
    .thumbnail {
        width: 100px;
        display: inline-block;
        border: 1px solid #d9d9d9;
        padding: 10px;
        cursor: pointer;
    }

    .thumbnail img {
        width: 100%;
    }

        .review-section {
            max-width: 100%;
            background-color: #fff;
            border-radius: 0px;
            padding: 20px;
            border: 1px solid #ececec;
            margin: 10px auto auto auto;
            display: flex;
            gap: 20px;
        }

        /* Left side: Review summary */
        .review-summary {
            flex: 1;
            border-right: 1px solid #e0e0e0;
            padding-right: 20px;
        }

        .rating-score {
            font-size: 3rem;
            font-weight: bold;
            color: #1863ab;
        }

        .star-rating {
            display: flex;
            gap: 5px;
        }

        .star-rating span {
            color: #ffbf00;
            font-size: 2.5rem;
        }

        .total-reviews {
            margin-bottom: 0px;
            font-size: 1.5rem;
            color: #666;
        }
       .star-rating .title_review{
            font-size:14px;
            color:#000;
                margin: auto 0px;
        }

        .write-review {
            display: inline-block;
            margin-top: 15px;
            padding: 5px 17px;
            color: #fff;
            background-color: #1863ab;
            border-radius: 20px;
            text-decoration: none;
            text-align: center;
        }

        .write-review:hover {
            background-color: rgb(55, 138, 216);
            color: #fff
        }

        /* Right side: Star rating breakdown */
        .ratings-breakdown {
            flex: 2;
            padding-left: 20px;
        }

        .rating-bar {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            gap: 10px;
        }

        .rating-bar span {
            margin-right: 10px;
            font-size: 1.5rem;
            color: rgb(22, 22, 22);
        }

        .progress-bar {
            flex: 1;
            background-color: #f0f0f0;
            border-radius: 10px;
            overflow: hidden;
            height: 8px;
        }

        .progress-fill {
            height: 100%;
            background-color: #1863ab;
        }
         /* Review Login Modal Customization */
        .review-login .modal-dialog {
            max-width: 400px;
            margin: 1.75rem auto;
        }

        .review-login-content {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            background: linear-gradient(to bottom right, #ffffff, #f7f8fc);
        }

        .review-login-header {
            padding: 1rem;
            border-bottom: none;
            display: flex;
            justify-content: flex-end;
        }

        .review-login-close {
            font-size: 1.5rem;
            color: #666;
            transition: color 0.3s;
        }

        .review-login-close:hover {
            color: #000;
        }

        .review-login-title h2 {
            font-size: 1.8rem;
            margin-bottom: 21px;
            font-weight: bold;
            color: #333;
        }

        .review-login-form .form-control {
            border: 1px solid #ced4da;
            border-radius: 25px;
            padding: 10px 20px;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .review-login-form .form-control:focus {
            border-color: #17a2b8;
            box-shadow: 0 0 5px rgba(23, 162, 184, 0.5);
        }

        .review-login-btn {
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            padding: 10px 25px;
            background: #17a2b8;
            color: #fff;
            border: none;
            transition: background 0.3s;
        }

        .review-login-btn:hover {
            background: #138496;
            color: #fff;
        }

        .review-login-delimiter {
            margin: 20px 0;
            font-size: 0.9rem;
            color: #aaa;
            position: relative;
        }

        .review-login-delimiter::before,
        .review-login-delimiter::after {
            content: '';
            display: inline-block;
            width: 30%;
            height: 1px;
            background: #ddd;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }

        .review-login-delimiter::before {
            left: 0;
        }

        .review-login-delimiter::after {
            right: 0;
        }

        .review-login-social .btn-round {
            border-radius: 50%;
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
            background: #f8f9fa;
            color: #6c757d;
            margin: 0 5px;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .review-login-social .btn-round:hover {
            background: #e2e6ea;
            color: #495057;
        }

        .signup-section {
            font-size: 0.9rem;
            color: #666;
        }

        .signup-section a {
            color: #17a2b8;
            font-weight: bold;
            text-decoration: none;
        }

        .signup-section a:hover {
            color: #138496;
        }

        .review-login-body {
            padding: 48px !important;
        }
         /* Mobile Styles */
        @media (max-width: 768px) {
            .review-section {
                display: block;
                width: 100%;
            }

            .review-summary {
                padding: 0px;
                border: none;
            }

            .ratings-breakdown {
                padding: 0px;
                margin-top: 21px;
            }
        }

        @media (max-width: 480px) {
            .review-section {
                display: block;
                width: 100%;
            }


            .review-summary {
                padding: 0px;
                border: none;
            }

            .ratings-breakdown {
                padding: 0px;
            }

            .ratings-breakdown {
                padding: 0px;
                margin-top: 21px;
            }
        }
 