    .select2-container--default .select2-selection--single {
        background-color: #F0F2F5 !important;
        border: none !important;
        border-radius: 0.5rem !important;
        height: 40px !important;
        display: flex;
        align-items: center;
        outline: none;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        padding-right: 0.75rem !important;
        padding-left: 20px !important;
        color: #334155 !important;
        font-family: inherit;
        line-height: normal !important;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        left: 8px !important;
        right: auto !important;
        height: 38px !important;
    }

    .select2-dropdown {
        border-color: #e2e8f0 !important;
        border-radius: 0.5rem !important;
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1) !important;
        font-family: inherit;
    }

    .select2-search__field {
        border: 1px solid #e2e8f0 !important;
        border-radius: 0.25rem !important;
        outline: none !important;
    }

    .select2-search__field:focus {
        border-color: #F27F34 !important;
        box-shadow: 0 0 0 1px rgba(242, 127, 52, 0.5) !important;
    }

    .select2-results__option--highlighted[aria-selected] {
        background-color: #506922 !important;
        color: white !important;
    }

    .cover-photo {
        background-color: #f0f2f5;
        background-image: url('{{ asset("assets/images/slider-1.jpg") }}');
        /* صورة افتراضية */
        background-size: cover;
        background-position: center;
        height: 250px;
        position: relative;
    }

    .profile-photo {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 4px solid white;
        background-color: white;
        position: absolute;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .profile-tabs {
        border-bottom: 2px solid #e5e7eb;
    }

    .tab-btn {
        padding: 10px 20px;
        font-weight: bold;
        color: #6b7280;
        cursor: pointer;
        position: relative;
        transition: color 0.2s ease;
    }

    .tab-btn:hover {
        background-color: #f3f4f6;
        border-radius: 8px 8px 0 0;
    }

    .tab-btn.active {
        color: #10b981;
    }

    .tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #10b981;
        border-radius: 3px 3px 0 0;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .animate-fadeIn {
        animation: fadeIn 0.4s ease-out forwards;
    }