/* ==========================================
   DASHBOARD STYLING
   ========================================== */

.dashboard-body {
    background: var(--bg-dark);
}

.dashboard-wrapper {
    min-height: calc(100vh - 80px);
}

/* Dashboard Header */
.dashboard-header {
    background: linear-gradient(135deg, #1a0b2e 0%, #151d3f 100%);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.dashboard-title span {
    background: linear-gradient(135deg, #00f0ff 0%, #fbb115 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-subtitle {
    color: #9ca3af;
    margin: 0;
}

/* Dashboard Content */
.dashboard-content {
    padding: 2rem 0;
}

/* Stat Cards */
.stat-card {
    background: rgba(21, 29, 63, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.stat-content {
    flex: 1;
}

.stat-label {
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0;
}

/* Dashboard Card */
.dashboard-card {
    background: rgba(21, 29, 63, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.card-header i {
    margin-right: 10px;
    color: #00f0ff;
}

.card-body {
    padding: 20px;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.list-item:last-child {
    border-bottom: none;
}

.item-title {
    color: #e8e8f0;
    font-weight: 500;
}

.item-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-in-progress {
    background: rgba(251, 177, 21, 0.2);
    color: #fbb115;
}

.status-completed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.status-pending {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Profile Info */
.profile-info p {
    color: #b3b3b3;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-info strong {
    color: #00f0ff;
}

.profile-info p:last-child {
    border-bottom: none;
}

/* Buttons */
.btn-gradient {
    background: linear-gradient(135deg, #00f0ff 0%, #07c2b2 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
    color: white !important;
}

.btn-outline-primary {
    color: #3b82f6;
    border-color: #3b82f6;
}

.btn-outline-primary:hover {
    background: #3b82f6;
    border-color: #3b82f6;
}

.btn-outline-warning {
    color: #fbb115;
    border-color: #fbb115;
}

.btn-outline-warning:hover {
    background: #fbb115;
    border-color: #fbb115;
}

.btn-outline-danger {
    color: #ef4444;
    border-color: #ef4444;
}

.btn-outline-danger:hover {
    background: #ef4444;
    border-color: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-header {
        padding: 2rem 0;
    }

    .dashboard-title {
        font-size: 1.5rem;
    }

    .stat-card {
        flex-direction: column;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
