@import './base.css';

.container {
    margin-top: 10vh;
    max-width: 90vw;
}

#admin,
#user {
    max-width: 90vw;
    background-color: white;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
}


footer {
    color: var(--text-color);
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-block h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
}

.footer-block h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 8px;
    border-radius: 2px;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-block strong {
    font-weight: 600;
}

button[type="button"] {
    margin-top: 15px;
}

/* Responsive spacing for small screens */
@media (max-width: 600px) {
    footer {
        padding: 40px 15px 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-block h3 {
        font-size: 16px;
    }

    .footer-block p {
        font-size: 13px;
    }
}