


    /* Profile Header Card */
    .profile-cover {
        height: 180px;
        background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
        border-radius: 10px 10px 0 0;
        position: relative;
    }

    .profile-img-container {
        position: relative;
        margin-top: -80px;
        text-align: center;
    }

    .profile-img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border: 5px solid #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }

    .upload-icon {
        position: absolute;
        bottom: 5px;
        right: 50%;
        transform: translateX(60px);
        background: #fff;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        transition: 0.3s;
    }

    .upload-icon:hover {
        background: #f0f0f0;
        color: var(--primary-color);
    }

    /* Stats Card */
    .stat-card {
        transition: transform 0.2s;
        border: none;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .stat-card:hover {
        transform: translateY(-5px);
    }

    /* Custom Tabs */
    .nav-pills .nav-link {
        color: var(--secondary-color);
        font-weight: 500;
        padding: 10px 20px;
        border-radius: 30px;
        margin-right: 10px;
    }

    .nav-pills .nav-link.active {
        background-color: var(--primary-color);
        color: white !important;
        box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
    }

    .nav-pills .nav-link:hover:not(.active) {
        background-color: #e9ecef;
    }

    /* Verified Badge */
    .verified-badge {
        color: #1c9bef;
        margin-left: 5px;
    }

    /* Document Status Colors */
    .status-pending { background-color: #fff3cd; color: #856404; }
    .status-approved { background-color: #d4edda; color: #155724; }
    .status-rejected { background-color: #f8d7da; color: #721c24; }
    .storage-card {
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 16px;
padding: 24px;
width: 100%;
max-width: 400px;
font-family: 'Segoe UI', sans-serif;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
}

.header-row h3 {
margin: 0;
font-size: 18px;
color: #1e293b;
}

.badge {
background: #eff6ff;
color: #3b82f6;
padding: 4px 12px;
border-radius: 20px;
font-weight: 700;
font-size: 14px;
}

/* Progress Bar Styling */
.progress-track {
background-color: #f1f5f9;
height: 12px;
border-radius: 10px;
overflow: hidden;
margin-bottom: 20px;
}

.progress-fill {
height: 100%;
background: linear-gradient(90deg, #3b82f6, #2563eb);
width: 0%; /* JS will change this */
border-radius: 10px;
transition: width 1s ease-in-out;
}

.storage-details {
display: flex;
justify-content: space-between;
border-top: 1px solid #f1f5f9;
padding-top: 15px;
}

.detail-item {
display: flex;
flex-direction: column;
}

.label {
font-size: 12px;
color: #64748b;
margin-bottom: 4px;
}

.value {
font-size: 16px;
font-weight: 600;
color: #0f172a;
}
