.mobile-hide {
    @media (max-width: 992px) {
        display: none;
    }
}


.mobile-width {
    width: 100%;

    @media (max-width: 992px) {
        width: 75%;
    }
}


body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
}

.site-footer {
    margin-top: auto;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #f1f5ff;
    padding: 2.5rem 0 1.5rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.15);
}

.site-footer a {
    color: #f1f5ff;
}

#footer-logo {
    width: 100px;
    height: auto;
    border-radius: 8px;
}

.footer-tagline {
    font-weight: 600;
    color: #f1f5ff;
}

.footer-heading {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 4px;
}

.footer-link {
    text-decoration: none;
    transition: opacity 0.15s ease-in-out;
}

.footer-link:hover {
    opacity: 0.75;
    text-decoration: underline;
}

.class-agenda {
    transform: translateX(88px);
}

@media (max-width: 992px) {
    .class-agenda {
        transform: none;
    }
}


#logo {
    width: 150px;
    height: 50px;
}

.dropdown-item.text-danger:hover,
.dropdown-item.text-danger:focus {
    background-color: #f8d7da;
    color: #b02a37 !important;
}


@media (max-width:400px) {
    #logo {
        width: 120px;
    }
}