/* Professional HR Management Style with Glass Morphism - Very Pale Yellow & Futuristic */

:root {
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --primary-light: #fbbf24;
    --secondary: #a3a3a3;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;
    
    --bg-primary: #ffffff;
    --bg-secondary: #fefefe;
    --bg-tertiary: #fdfdfd;
    
    --text-primary: #1c1917;
    --text-secondary: #78716c;
    --text-tertiary: #a8a29e;
    
    --border-color: rgba(250, 204, 21, 0.08);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Glass morphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-primary);
    background: #fefefe;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(250, 204, 21, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(250, 204, 21, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, rgba(250, 204, 21, 0.01) 0%, transparent 100%);
    background-attachment: fixed;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Futuristic Abstract Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(250, 204, 21, 0.04) 0%, transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(250, 204, 21, 0.03) 0%, transparent 30%),
        linear-gradient(135deg, transparent 0%, rgba(250, 204, 21, 0.02) 50%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(250, 204, 21, 0.01) 2px, rgba(250, 204, 21, 0.01) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(250, 204, 21, 0.01) 2px, rgba(250, 204, 21, 0.01) 4px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.manager-layout {
    min-height: 100vh;
    background: transparent;
    position: relative;
    z-index: 1;
}

/* Logo Styles */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.logo-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 4px;
    position: relative;
}

.logo-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.logo-circle:nth-child(1) {
    width: 10px;
    height: 10px;
    animation-delay: 0s;
}

.logo-circle:nth-child(2) {
    width: 14px;
    height: 14px;
    animation-delay: 0.3s;
}

.logo-circle:nth-child(3) {
    width: 16px;
    height: 16px;
    animation-delay: 0.6s;
}

.logo-line {
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(163, 163, 163, 0.3), transparent);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-transform: none;
}

.logo-text .ai {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

.logo-tagline {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Top Navigation - Glass Effect */
.top-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(250, 204, 21, 0.1);
    padding: 0;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.02em;
}

.top-nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.top-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(250, 204, 21, 0.1);
}

.top-nav-link:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    border-color: rgba(250, 204, 21, 0.2);
    transform: translateY(-1px);
}

.top-nav-link.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Main Content */
.main-content {
    max-width: 100%;
    margin: 0;
    padding: 32px;
    position: relative;
    z-index: 1;
}

.page-header {
    margin-bottom: 32px;
}

.page-header h2 {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.page-header p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
}

/* Cards - Glass Morphism Effect */
.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(250, 204, 21, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    border-color: rgba(250, 204, 21, 0.2);
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-icon {
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Futuristic Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-primary);
    border: 1px solid rgba(250, 204, 21, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(250, 204, 21, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669 0%, var(--success) 100%);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger) 0%, #dc2626 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #dc2626 0%, var(--danger) 100%);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
}

/* Forms - Glass Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(250, 204, 21, 0.15);
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: inherit;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1), 0 4px 12px rgba(245, 158, 11, 0.15);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Tables - Glass Effect */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(250, 204, 21, 0.1);
}

.data-table th {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(250, 204, 21, 0.15);
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(250, 204, 21, 0.08);
    font-size: 14px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.5);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: rgba(255, 255, 255, 0.7);
}

/* Badges - Glass Effect */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-success {
    background: rgba(209, 250, 229, 0.8);
    color: #065f46;
}

.badge-warning {
    background: rgba(254, 243, 199, 0.9);
    color: #92400e;
}

.badge-danger {
    background: rgba(254, 226, 226, 0.8);
    color: #991b1b;
}

.badge-info {
    background: rgba(207, 250, 254, 0.8);
    color: #0e7490;
}

/* Messages - Glass Effect */
.message {
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.message-success {
    background: rgba(209, 250, 229, 0.8);
    color: #065f46;
    border-color: rgba(110, 231, 183, 0.5);
}

.message-error {
    background: rgba(254, 226, 226, 0.8);
    color: #991b1b;
    border-color: rgba(248, 113, 113, 0.5);
}

/* Stats Grid - Glass Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(250, 204, 21, 0.1);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 8px 0;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Dashboard Grid - Glass Cards */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(250, 204, 21, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(250, 204, 21, 0.2);
}

.dashboard-card:hover::before {
    opacity: 1;
}

.dashboard-card h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.dashboard-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.dashboard-card .btn {
    margin-top: 8px;
}

/* Dashboard Grid - Single Row with Equal Sizes */
.dashboard-grid-single-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1400px) {
    .dashboard-grid-single-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-grid-single-row {
        grid-template-columns: 1fr;
    }
}

/* Large Icon Button Cards */
.icon-button-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 40px 24px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(250, 204, 21, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.icon-button-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.icon-button-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(250, 204, 21, 0.3);
}

.icon-button-card:hover::before {
    opacity: 1;
}

.icon-button-icon {
    font-size: 64px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.icon-button-card:hover .icon-button-icon {
    transform: scale(1.1);
}

.icon-button-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

/* Section Grid */
.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

/* Status Report Card - Glass Effect */
.status-report-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-primary);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 32px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(250, 204, 21, 0.15);
    position: relative;
    overflow: hidden;
}

.status-report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    opacity: 0.6;
}

.status-report-card h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 600;
}

.status-report-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
}

/* Test Case Styles - Glass Effect */
.test-case-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(250, 204, 21, 0.1);
    transition: all 0.2s ease;
}

.test-case-card:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.test-case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.test-case-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.test-case-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.test-rating {
    display: inline-flex;
    gap: 4px;
    margin-left: 12px;
}

.test-rating-star {
    font-size: 16px;
    color: #fbbf24;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin: 5% auto;
    padding: 0;
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(250, 204, 21, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    color: var(--text-secondary);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(250, 204, 21, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-content {
        padding: 20px 16px;
    }
    
    .top-nav-content {
        padding: 12px 16px;
        flex-direction: column;
        gap: 12px;
    }
    
    .page-header h2 {
        font-size: 24px;
    }
    
    .section-grid,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 20px;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(245, 158, 11, 0.4);
}

/* Futuristic Icons */
.icon-futuristic {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

/* Large Daily Log Button */
.daily-log-button {
    font-size: 20px !important;
    padding: 24px 56px !important;
    min-width: 350px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.daily-log-button:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5) !important;
}

/* Sidebar Icon Button Cards - Rectangle style, 2 columns, same size */
.icon-button-card-sidebar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 20px 16px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(250, 204, 21, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    aspect-ratio: 1;
}

.icon-button-card-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.icon-button-card-sidebar:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(250, 204, 21, 0.3);
}

.icon-button-card-sidebar:hover::before {
    opacity: 1;
}

.icon-button-icon-sidebar {
    font-size: 36px;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.icon-button-card-sidebar:hover .icon-button-icon-sidebar {
    transform: scale(1.1);
}

.icon-button-label-sidebar {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}
