/* assets/css/admin.css */
.admin-sidebar {
    background: #1a1a2e;
    min-height: 100vh;
    padding: 1.5rem 0;
}

.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.7);
    padding: 0.7rem 1.5rem;
    border-radius: 0;
    transition: all 0.3s;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: white;
    background: rgba(255,255,255,0.1);
}

.admin-sidebar .nav-link i {
    width: 24px;
    margin-right: 10px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Dark theme for code */
.dark-theme {
    background: #1e1e2f;
    color: #e0e0e0;
}

.dark-theme .form-control,
.dark-theme .form-select {
    background: #2d2d44;
    border-color: #3d3d5c;
    color: #e0e0e0;
}

.dark-theme .table {
    color: #e0e0e0;
}

.dark-theme .table-hover tbody tr:hover {
    background: rgba(255,255,255,0.05);
}

/* Progress animation */
.progress-animated {
    animation: progressPulse 1.5s ease-in-out infinite;
}

@keyframes progressPulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* File tree */
.file-tree {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.file-tree .folder {
    color: #f9ca7f;
}

.file-tree .file {
    color: #a8d8ea;
}

.file-tree .indent {
    padding-left: 20px;
}