
    /* Global Reset & Font */
    body {
        font-family: 'Poppins', sans-serif;
        
        /* --- FIX IS HERE --- */
        background: linear-gradient(to bottom, rgba(223, 237, 241, 0.8) 0%, rgba(255, 255, 255, 1) 100%) !important;
        
        min-height: 100vh;
        background-repeat: no-repeat;
        background-attachment: fixed;
        color: #333;
    }

    /* --- Custom 'review-...' Classes --- */
    .review-hero-section {
        background: #e9ecef;
        background-color: rgba(233, 236, 239, 0.6); 
        height: 160px;
    }

    .review-header-card {
        margin-top: -60px;
        background: white;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 25px;
        position: relative;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05); 
    }

    .review-logo-box {
        width: 120px;
        height: 120px;
        background: white;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 10px;
        position: absolute;
        top: -50px;
        left: 30px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .review-logo-box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .review-header-content {
        margin-left: 140px; 
    }

    .review-content-box {
        background: white;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .review-stats-box {
        background: #f8f9fa;
        padding: 15px;
        border: 1px solid #dee2e6;
        border-radius: 6px;
        text-align: center;
    }
    
    .review-item-row {
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .review-item-row:last-child {
        border-bottom: none;
    }

    .review-avatar {
        width: 40px; 
        height: 40px; 
        background: #6c757d; 
        color: white;
        border-radius: 50%; 
        display: flex; 
        align-items: center; 
        justify-content: center;
        font-weight: bold;
    }

    /* --- Interactive Stars in Modal --- */
    .review-star-rating i {
        font-size: 1.5rem;
        color: #dcdcdc; /* Default Grey */
        cursor: pointer;
        transition: color 0.2s;
        margin-right: 5px;
    }
    .review-star-rating i.active {
        color: #ffc107; /* Gold Color */
    }

    .form-control, .form-select {
        border: 1px solid #e0e0e0 !important;
        box-shadow: none !important;
        border-radius: 6px !important;
    }

    @media (max-width: 768px) {
        .review-logo-box { left: 50%; transform: translateX(-50%); top: -60px; }
        .review-header-content { margin-left: 0; margin-top: 60px; text-align: center; }
        .review-action-btns { justify-content: center; margin-top: 15px; display: flex; gap: 10px;}
    }
