    .profile-container .badge {
        color: #202020;
    }
    
    .bg-profile-badges {
        background-color: #f5f0f57a;
        color: #202020;
        font-weight: 100;
    }

    .bg-profile-badges-status {
        background-color: var(--isx-color6) !important;
        color: #FCFCFC;
        font-weight: 100;
    }

    .bg-profile-Textcolor {
        color: #473E91;
    }

    .profile-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .profile_btnmain {
        border-radius: 8px;
        padding: 0px 4px;
    }

    .profile_btn {
        background-color: var(--isx-color1) !important;
        color: #FCFCFC;
    }

    .profile_btn:hover {
        background-color: var(--isx-color6) !important;
        color: #FCFCFC;
    }

    .profile-header {
        padding: 30px;
        text-align: center;
    }

    .profile-image {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
        border: 1px solid #e9ecef;
    }

    .profile-content {
        padding: 30px;
    }

    .info-card {
        border-radius: 8px;
        padding: 25px;
        margin-bottom: 20px;
    }

    .info-title {
        color: #473E91;
        font-weight: 600;
        font-size: 1.2rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 10px;
    }

    .info-title i {
        margin-right: 10px;
        color: #6c757d;
        width: 20px;
    }

    .info-item {
        display: flex;
        margin-bottom: 15px;
        align-items: center;
    }

    .info-item:last-child {
        margin-bottom: 0;
    }

    .info-label {
        font-weight: 500;
        color: #473E91;
        min-width: 140px;
        margin-right: 15px;
    }

    .info-value {
        font-weight: 400;
        flex: 1;
    }

    .divider {
        height: 1px;
        background: #e9ecef;
        margin: 20px 0;
        border: none;
    }

    .edit-mode .info-value {
        display: none;
    }

    .edit-mode .info-input {
        display: block;
    }

    .info-input {
        display: none;
    }

    .edit-mode .readonly-section .info-value {
        display: block !important;
    }

    .edit-mode .readonly-section .info-input {
        display: none !important;
    }

    .readonly-badge {
        display: inline-block;
        color: #6c757d;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: 500;
        margin-left: 10px;
    }

    .btn-group {
        gap: 10px;
    }

    @media (max-width: 768px) {
        .profile-container {
            margin: 10px;
        }

        .profile-content {
            padding: 20px;
        }

        .info-card {
            padding: 20px;
        }

        .info-item {
            flex-direction: row;
            align-items: flex-start;
        }

        .info-label {
            min-width: auto;
            margin-bottom: 5px;
        }

        .btn-group {
            flex-direction: column;
        }
    }