.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    transition: border-color 0.2s;
}
.glass-card:hover {
    border-color: rgba(74, 222, 128, 0.4);
}

.glass-modal {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.glass-input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 0.75rem;
    color: white;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: border-color 0.2s;
    outline: none;
}
.glass-input:focus {
    border-color: rgba(74, 222, 128, 0.6);
    box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.3);
}
.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.glass-select {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 0.75rem;
    color: white;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: border-color 0.2s;
    outline: none;
    appearance: none;
}
.glass-select:focus {
    border-color: rgba(74, 222, 128, 0.6);
}

.btn-primary {
    background: #22c55e;
    color: black;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 0.75rem;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: #16a34a;
}

.btn-secondary {
    background: transparent;
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.2s;
    cursor: pointer;
}
.btn-secondary:hover {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.5);
}

.btn-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.2s;
    cursor: pointer;
}
.btn-danger:hover {
    background: rgba(239, 68, 68, 0.25);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
    text-decoration: none;
}
.sidebar-link:hover {
    background: rgba(74, 222, 128, 0.1);
    color: white;
}
.sidebar-link.active {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(74, 222, 128, 0.3);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 222, 128, 0.5);
}

/* Table */
.glass-table {
    width: 100%;
    border-collapse: collapse;
}
.glass-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.glass-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
}
.glass-table tr:hover td {
    background: rgba(74, 222, 128, 0.05);
}

/* Status badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}
.badge-green {
    background: rgba(74, 222, 128, 0.15);
    color: #86efac;
    border: 1px solid rgba(74, 222, 128, 0.3);
}
.badge-red {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.badge-yellow {
    background: rgba(234, 179, 8, 0.15);
    color: #fde047;
    border: 1px solid rgba(234, 179, 8, 0.3);
}
.badge-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.3);
}
.badge-gray {
    background: rgba(156, 163, 175, 0.15);
    color: #d1d5db;
    border: 1px solid rgba(156, 163, 175, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Tab styles */
.tab-btn {
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
    background: none;
}
.tab-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}
.tab-btn.active {
    color: #4ade80;
    border-bottom-color: #4ade80;
}
