
      /* Compact Form Styles */
      .review-form {
        padding: 0.5rem !important;
        margin-bottom: 0.3rem !important;
      }
      
       /* {
        gap: 0.15rem !important;
      }.review-form .row */
       
      .review-form .col-lg-6,
      .review-form .col-12 {
        padding: 0.1rem !important;
      }
      
      .review-form label {
        margin-bottom: 0.15rem !important;
        font-size: 0.75rem !important;
        font-weight: 500 !important;
      }
      
      .review-form input,
      .review-form textarea {
        padding: 0.3rem 0.5rem !important;
        font-size: 0.75rem !important;
        border-radius: 0.3rem !important;
        margin-bottom: 0.1rem !important;
      }
      
      .review-form textarea {
        min-height: 50px !important;
        padding: 0.3rem !important;
      }
      
      .review-form button {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.8rem !important;
        border-radius: 1rem !important;
        margin-top: 0.15rem !important;
      }
      
      /* Fix form-check alignment */
      .form-check {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin-bottom: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        border-bottom: 1px solid #f0f0f0 !important;
      }
      
      .form-check:last-child {
        border-bottom: none !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
      }
      
      .form-check-input {
        margin: 0 !important;
        flex-shrink: 0 !important;
        width: 1rem !important;
        height: 1rem !important;
      }
      
      .form-check-label {
        margin: 0 !important;
        flex: 1 !important;
        line-height: 1.2 !important;
        cursor: pointer !important;
      }
      
      /* Validation Styles */
      .form-group {
        margin-bottom: 0.25rem !important;
      }
      
      .form-control.is-invalid {
        border-color: #dc3545 !important;
        background-color: #fff5f5 !important;
      }
      
      .form-control.is-valid {
        border-color: #28a745 !important;
        background-color: #f8fff9 !important;
      }
      
      .invalid-feedback {
        color: #dc3545 !important;
        font-size: 0.65rem !important;
        margin-top: 0.1rem !important;
        display: block !important;
        font-weight: 500 !important;
      }
      
      .valid-feedback {
        color: #28a745 !important;
        font-size: 0.65rem !important;
        margin-top: 0.1rem !important;
        display: block !important;
        font-weight: 500 !important;
      }
      
      /* Toast Notification Styles */
      .toast-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 9999;
      }
      
      .toast {
        background: white;
        border-radius: 0.5rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        padding: 1rem;
        margin-bottom: 0.5rem;
        min-width: 300px;
        max-width: 400px;
        border-left: 4px solid #28a745;
        animation: slideIn 0.3s ease;
      }
      
      .toast.success {
        border-left-color: #28a745;
      }
      
      .toast.error {
        border-left-color: #dc3545;
      }
      
      .toast-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.5rem;
      }
      
      .toast-title {
        font-weight: 600;
        color: #333;
      }
      
      .toast-close {
        background: none;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        color: #666;
      }
      
      .toast-body {
        color: #666;
        font-size: 0.9rem;
      }
      
      @keyframes slideIn {
        from {
          transform: translateX(100%);
          opacity: 0;
        }
        to {
          transform: translateX(0);
          opacity: 1;
        }
      }
      
      /* Responsive adjustments */
      @media (max-width: 768px) {
        .review-form {
          padding: 1rem !important;
        }
        
        .toast-container {
          left: 10px;
          right: 10px;
        }
        
        .toast {
          min-width: auto;
          max-width: none;
        }
      }
    