/* Glassmorphism effects */
.glass-container,
.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
}

.dark .glass-card,
.dark .glass-container {
    background: rgba(16, 34, 22, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

.glass-input {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark .glass-input {
    background: rgba(16, 34, 22, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Background Animations and Decoratives */
body {
    background-color: #f5f8f6;
    overflow-x: hidden;
    min-height: max(100vh, 884px);
    font-family: 'Manrope', sans-serif;
}

.dark body {
    background-color: #102216;
}

.bg-blob, .blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
}

.login-blob {
    width: 300px;
    height: 300px;
    background: #006400;
    opacity: 0.15;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #006400;
    top: -100px;
    right: -100px;
    opacity: 0.5;
    position: fixed;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #0bda50;
    bottom: -150px;
    right: -50px;
    opacity: 0.5;
    position: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 100, 0, 0.2);
    border-radius: 10px;
}

/* Sidebar Active State (Dashboard) */
.sidebar-active {
    background-color: #006400;
    color: white !important;
}

/* Typography styles (Client Form) */
.input-label {
    font-size: 10px;
    letter-spacing: 0.075em;
    font-weight: 700;
    text-transform: uppercase;
    color: #006400;
    margin-bottom: 0.5rem;
    display: block;
}

.dark .input-label {
    color: #0bda50;
}

/* Dark Green Transparent Utility */
.bg-forest-glass {
    background: rgba(0, 100, 0, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 100, 0, 0.2);
}

.dark .bg-forest-glass {
    background: rgba(16, 34, 22, 0.6);
    border-color: rgba(11, 218, 80, 0.2);
}
