.skeleton-loader {
    margin: 20px 0;
}

.skeleton-line {
    background-color: #e0e0e0;
    border-radius: 4px;
    height: 20px;
    /* Default height for p */
    margin-bottom: 10px;
    animation: pulse 1.5s ease-in-out infinite;
    width: 100%;
}

.skeleton-h1 {
    height: 38px;
    /* Height for h1 */
    width: 40%;
    /* Width for h1 */
    margin-bottom: 15px;
}

.skeleton-h2 {
    height: 24px;
    /* Height for h2 */
    width: 50%;
    /* Width for h2 */
    margin-top: 30px;
    margin-bottom: 12px;
}

.skeleton-p {
    height: 20px;
    /* Height for p */
    width: 100%;
    /* Width for p */
}

@keyframes pulse {
    0% {
        background-color: transparent;
    }

    50% {
        background-color: #c0c0c0;
    }

    100% {
        background-color: transparent;
    }
}

.error-message {
    color: rgb(173, 20, 20);
    /* Red text */
    background: #f5d1d1;
    /* Light red background */
    border-left: 5px solid rgb(253, 69, 69);
    /* Red left border */
    font-family: sans-serif;
    font-size: 14px;
    margin-top: 10px;
    padding: 10px;
    /* Add some padding for better appearance */
}