    /* ======================================================== */
    /* STYLE CHUNG (GIỐNG VỚI MODAL ĐĂNG NHẬP)
    /* ======================================================== */

    /* Thêm một class riêng, ví dụ: .role-select-modal */
    .role-select-modal .modal-dialog {
        max-width: 850px;
    }

    .role-select-modal .modal-content {
        border-radius: 20px;
        border: none;
        overflow: hidden;
    }

    /* Cột ảnh bên trái */
    .role-select-modal .modal-image-side {
        background-color: #fff4d8;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
    }

    .role-select-modal .modal-image-side img {
        max-width: 100%;
        height: auto;
    }
    
    /* Nút đóng (X) */
    .role-select-modal .modal-close-button {
        position: absolute;
        top: 6px;
        right: 20px;
        width: 32px;
        height: 32px;
        background-color: #fde68a;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        transition: opacity 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #654100;
        font-weight: bold;
    }
    .role-select-modal .modal-close-button:hover {
        opacity: 0.8;
    }

    /* ======================================================== */
    /* STYLE RIÊNG CHO PHẦN LỰA CHỌN (BÊN PHẢI)
    /* ======================================================== */
    
    .role-select-modal .modal-options-side {
        padding: 40px 60px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    /* Tiêu đề "Bạn là ai?" */
    .role-select-modal .options-title {
        text-align: center;
        color: #ff7e5f;
        font-weight: 800;
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    /* Khung chứa 2 lựa chọn */
    .role-select-modal .options-wrapper {
        display: flex;
        justify-content: center;
        gap: 40px;
        width: 100%;
    }

    /* Một mục lựa chọn (vòng tròn và chữ) */
    .role-select-modal .option-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #333;
    }

    /* Vòng tròn màu vàng */
    .role-select-modal .option-circle {
        width: 150px;
        height: 150px;
        background-color: #fde68a;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .role-select-modal .option-item:hover .option-circle {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(253, 230, 138, 0.6);
    }
    .role-select-modal .option-circle svg {
        width: 60px;
        height: 60px;
    }
    
    /* Chữ mô tả bên dưới */
    .role-select-modal .option-label {
        font-size: 18px;
        font-weight: 700;
        color: #555;
    }

    /* ======================================================== */
    /* RESPONSIVE
    /* ======================================================== */
    @media (max-width: 767px) {
        .role-select-modal .modal-image-side {
            display: none; /* Ẩn cột ảnh gấu */
        }

        .role-select-modal .modal-options-side {
            padding: 40px 20px;
        }

        .role-select-modal .options-wrapper {
            flex-direction: column;
            gap: 30px;
        }

        .role-select-modal .option-circle {
            width: 130px;
            height: 130px;
        }
    }