/* Modern UI Theme */
:root {
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-bg: #1e293b;
    --light-bg: #f1f5f9;
    --border-radius: 1rem;
    --transition: all 0.3s ease;
    --default-color-rgb: 33, 37, 41;
    --secondary-color: #32353a;
}

/* Layout & General Styles */
body {
    background-color: var(--light-bg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dashboard-body {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
    width: 280px;
    background: var(--dark-bg);
    min-height: 100vh;
    padding: 1.5rem;
    transition: var(--transition);
}

.sidebar-header {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-header h4 {
    color: white;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 0.5rem;
    background: rgba(255,255,255,0.1);
}

.sidebar-nav {
    margin-top: 2rem;
}

.nav-item a {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: rgba(255,255,255,0.7);
    border-radius: 0.5rem;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.nav-item.active a,
.nav-item a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(-0.25rem);
}

.nav-item i {
    font-size: 1.25rem;
    margin-left: 1rem;
}

/* Main Content Area */
.main-content {
    flex: 1;
    padding: 2rem;
    margin-right: 280px;
}

/* Cards & Components */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.card-header {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1.5rem;
}

.quick-stat-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.quick-stat-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-left: 1.5rem;
    background: var(--light-bg);
    color: var(--primary-color);
}

.quick-stat-card .info h3 {
    font-size: 2rem;
    margin: 0;
    font-weight: bold;
    color: var(--dark-bg);
}

/* Navigation & User Interface */
.navbar {
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.user-dropdown {
    background: var(--light-bg);
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Buttons & Interactive Elements */
.btn {
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Activity List Styling */
.activity-list {
    padding: 0;
}

.activity-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.activity-item:hover {
    background: var(--light-bg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .sidebar {
        width: 80px;
        padding: 1rem;
    }

    .sidebar-header h4,
    .nav-item span {
        display: none;
    }

    .main-content {
        margin-right: 80px;
    }

    .nav-item a {
        justify-content: center;
    }

    .nav-item i {
        margin: 0;
    }
}

/* Program & Institutional Accreditation Styles */
.page-header {
    margin-bottom: 2rem;
}

.page-title {
    font-size: 1.75rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.add-program-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
}

.add-program-btn i {
    margin-left: 0.5rem;
}

.program-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.program-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.program-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.program-title h5 {
    margin: 0;
    font-weight: 600;
}

.program-faculty {
    color: #64748b;
    font-size: 0.875rem;
}

.program-body {
    padding: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.progress-wrapper {
    margin: 1.5rem 0;
}

.progress {
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    margin-top: 0.5rem;
}

.progress-bar {
    background: var(--primary-color);
    border-radius: 4px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
}

.status-badge.pending {
    background: rgba(246, 189, 96, 0.1);
    color: #f6bd60;
}

.program-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.program-card.add-new {
    border: 2px dashed #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
}

.program-card.add-new:hover {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.02);
}

.add-content {
    text-align: center;
    padding: 3rem 2rem;
}

.add-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.add-content p {
    color: #64748b;
    margin: 0;
}

.notifications-dropdown {
    min-width: 300px;
    padding: 0;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
}

.notification-item i {
    font-size: 1.25rem;
}

.notification-content p {
    margin: 0;
}

.notification-content small {
    color: #666;
}