:root {
    --primary-color: #0d6efd;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

body {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar-link {
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.navbar-link i {
    margin-right: 0.5rem;
    width: 1rem;
}

.navbar-link {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: #FFFFFF;
}

.navbar-brand {
    font-weight: 600;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.progress {
    height: 1rem;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

code {
    background-color: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
}

.border {
    border-color: rgba(0, 0, 0, 0.125) !important;
}

.btn:disabled {
    opacity: 0.65;
}

/* Footer Styles */
.footer {
    margin-top: auto;
    background-color: #212529 !important;
}

.footer h5 {
    color: #fff;
    font-weight: 600;
}

.footer h6 {
    color: #adb5bd;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.footer-link {
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: var(--primary-color) !important;
    /* transform: translateX(5px); */
}

.footer-link i {
    margin-right: 0.5rem;
    width: 1rem;
}

.social-links a {
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer .text-muted {
    color: #6c757d !important;
}

.footer .border-secondary {
    border-color: #495057 !important;
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .footer .col-md-6:first-child {
        margin-bottom: 2rem;
    }
    
    .footer .text-md-end {
        text-align: center !important;
    }
    
    .social-links {
        margin-top: 1rem;
    }
}

/* Simple Footer Styles - Bulletproof Center Alignment */
.simple-footer {
    margin-top: auto;
    /* background-color: #343a40; */
    /* color: #fff; */
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .simple-footer .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 !important;
    padding: 0 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
} */

/* .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
} */

/* .footer-brand {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-brand i {
    margin-right: 0.5rem;
    color: #0d6efd;
} */

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0d6efd;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #495057;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-links {
        gap: 1rem;
        flex-direction: column;
    }
}