/* Base template styles */

/* Keep scrollbar visible on all pages */
html {
    min-height: 100%;
    overflow-y: scroll;
}

body {
    min-height: 100vh;
}

/* Loading overlay */
#page-loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#page-loader.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1A5E34;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navbar */
.navbar-logo {
    max-width: 120px;
    height: auto;
}

/* Navigation menu for small screens */
.nav-small-screens a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-small-screens a.active {
    color: #1A5E34;
    font-weight: 600;
    border-bottom-color: #1A5E34;
}

/* Footer */
.my-footer {
    margin-top: auto;
}
