    #reviewModal .modal-content {
        border-radius: 15px;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    #reviewModal .modal-header {
        border-bottom: none;
        padding: 25px 25px 0px 15px;
    }

    #reviewModal .modal-title {
        font-weight: 600;
        color: #002633;
        font-size: 18px;
    }

    #reviewModal .btn-close {
        background: none;
        border: none;
        font-size: 24px;
        color: #999;
        padding: 0;
        margin: 0;
    }

    #reviewModal .rate-label {
        font-size: 14px;
        color: #666;
        margin-bottom: 10px;
        display: block;
    }

    #reviewModal .star-rating {
        display: flex;
        gap: 5px;
        margin-bottom: 25px;
    }

    #reviewModal .star {
        font-size: 32px;
        color: #e0e0e0;
        cursor: pointer;
        transition: color 0.2s;
    }

    .star:hover,
    .star.active {
        color: #ffd700;
    }

    .thoughts-label {
        font-size: 14px;
        color: #666;
        margin-bottom: 10px;
        display: block;
    }

    #reviewModal .review-textarea {
        width: 100%;
        min-height: 120px;
        padding: 15px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 14px;
        resize: vertical;
        transition: border-color 0.3s;
    }

    .review-textarea:focus {
        outline: none;
        border-color: #007bff;
    }

    .review-textarea::placeholder {
        color: #999;
    }

    #reviewModal .submit-btn {
        width: 100%;
        background: #00A8E0;
        color: white;
        border: none;
        padding: 12px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        margin-top: 20px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    #reviewModal .submit-btn:hover {
        background: #007bff;
    }

    .mobrevbtn {
        margin-top: 20px;
        justify-content: center;
    }

    @media (max-width: 768px) {
        .rev-top {
            flex-direction: column;
            gap: 15px;
        }

        .rev-btn {
            display: none;
        }

        .mobrevbtn {
            display: flex !important;
        }
    }

    @media (min-width: 769px) {
        .mobrevbtn {
            display: none;
        }
    }


    .rev-btn {
        border: none;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: 8px;
        background: #00A8E0;
        color: #FFF;

        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }

    .rev-top {

        display: flex;
        justify-content: space-between;
        padding-bottom: 14px;
    }


    .revbtn-icon {
        width: 16px;
        height: 16px;
    }

    .review-item {
        display: flex;
        gap: 12px;
        margin-bottom: 20px;
    }

    .review-item img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
    }

    .review-content {
        flex: 1;
    }

    .review-meta {
        font-weight: bold;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .review-meta span.stars {
        color: #FFD700;
        font-size: 13px;
        margin-left: 0;
    }

    .review-meta .meta-info {
        font-size: 12px;
        color: #999;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .review-meta .meta-info img {
        width: 16px;
        height: 16px;
    }



    .review-text {
        margin-top: 6px;
        color: #666;
        text-align: justify;

        font-size: 12px;

        font-weight: 500;
    }

    .review-text strong {
        color: #0C0C0C;

        font-size: 12px;

        font-weight: 600;
        line-height: 17px;
    }



    .rev-top .sub-hd {
        gap: 3px;
    }

    .service-label {
        font-size: 14px;
        color: #666;
        margin-bottom: 10px;
        margin-top: 15px;
        display: block;
    }

    #reviewModal .service-dropdown {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 14px;
        color: #333;
        background-color: white;
        cursor: pointer;
        transition: border-color 0.3s;
        margin-bottom: 15px;
    }


    #reviewModal .service-dropdown option {
        padding: 10px;
    }


    #reviewModal .modal-content {
        width: 80%;
        min-height: 70%;
    }


    @media (max-width: 768px) {
        #reviewModal .modal-content {
            width: 100%;
            min-height: 70%;
        }
    }