/* Profile Page Styles */
.profile-avatar {
    width: 150px;
    height: 150px;
    font-size: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: var(--bs-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.profile-details label {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.profile-details div {
    font-weight: 500;
}

/* Custom styling for tabs */
.nav-tabs .nav-link {
    color: var(--bs-dark);
    border-bottom-width: 3px;
}

.nav-tabs .nav-link.active {
    color: var(--bs-primary);
    border-bottom-color: var(--bs-primary);
    font-weight: 500;
}

/* KYC Status Badge Styles */
.kyc-status-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Custom Card Shadow Effect */
.profile-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Form Field Styling */
.form-control:focus, .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Progress Bar Animations */
.progress-bar {
    transition: width 0.5s ease-in-out;
}

/* Badge Hover Effects */
.badge {
    transition: transform 0.2s;
}

.badge:hover {
    transform: scale(1.1);
}
