/* Start User Profile */
.profile-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-width: 5px !important;
}

.status-indicator {
    width: 25px;
    height: 25px;
    bottom: 10px;
    right: 10px;
    border-width: 3px !important;
}

.profile-name {
    font-size: 1.9rem;
}

.profile-role {
    font-size: 1.4rem;
    opacity: 0.9;
}

.section-title {
    font-size: 1.9rem;
    color: black;
}

.section-subtitle {
    font-size: 1.3rem;
}

.info-item {
    padding: 15px;
    background: #f2f4fc;
    border-radius: 12px;
    border-left: 4px solid #0f61ef;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover {
    background: linear-gradient(135deg, #f8f9fc 0%, #e3e6f0 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
    border-left-width: 6px;
}

.info-label {
    font-size: 1.3rem;
}

.info-icon {
    color: #0f61ef;
}

.info-value {
    font-size: 1.4rem;
}

.user-type-badge {
    background: #cee7fb;
    font-size: 1.4rem;
    border-radius: 50px;
}

/* End User Profile */


/* Start Edit Profile */
.edit-profile-card {
    border-radius: 20px;
    overflow: hidden;
}

.edit-header {
    padding: 12px 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 1.5rem;
}

.header-title {
    color: black;
    font-size: 1.9rem;
    font-weight: 700;
}

.header-subtitle {
    color: black;
    font-size: 1.2rem;
}


.section-label {
    color: #667eea;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e3e6f0;
}

.field-labell {
    font-size: 095rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
}

.input-icon-wrapper {
    position: relative;
}

.custom-input {
    padding-left: 45px;
    height: 32px;
    border: 1px solid #d4d7dd;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
    background: #f8f9fc;
}

.readonly-input {
    background: #f8f9fc;
    cursor: not-allowed;
    opacity: 0.7;
}

.readonly-note {
    color: #718096;
    font-size: 12px;
    margin-top: 0.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
}

.edit-btn,
.btn-save {
    background: linear-gradient(120deg, #0d6efd, #6610f2);
    background-size: 175% auto;
    background-position: left center;
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background-position 0.4s ease;
}

.edit-btn:hover,
.btn-save:hover {
    background-position: right center;
    transform: scale(1.05);
}

.btn-cancel {
    background: #6c757d;
    background-size: 175% auto;
    background-position: left center;
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background-position 0.4s ease;
}

.btn-cancel:hover {
    background-position: right center;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .edit-header {
        padding: 1.5rem 1rem;
    }

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

    .form-actions {
        flex-direction: column;
    }

    .btn-save,
    .btn-cancel {
        width: 100%;
    }
}

/* End Edit Profile */