
        
        .box-container {
            max-width: 1000px;
            max-height: 80vh;
            margin: 0 auto;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            overflow-y: auto;
            overflow-x: hidden;
            justify-content: center;
        }
        /* h1 {
            color: #333;
            text-align: center;
            margin-bottom: 10px;
        }
        
        p {
            text-align: center;
            color: #666;
            margin-bottom: 30px;
        } */
        
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #333;
        }
        
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            margin-bottom: 20px;
            box-sizing: border-box;
        }
        
        textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .rating-group {
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .rating-button {
            padding: 12px 16px;
            background-color: #000000;
            color:white;
            border: 2px solid #e9ecef;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            text-align: left;
        }
        
        .rating-button:hover {
            background-color: #e9ecef;
            border-color: #007bff;
        }
        
        .rating-button.selected {
            background-color: #dc3545;
            color: white;
        }
        
        .button-group {
            text-align: center;
            margin-top: 30px;
        }
        
        .button {
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }
        
        .button-primary {
            background-color: #007bff;
            color: white;
        }
        
        .button-primary:hover {
            background-color: #0056b3;
        }
        
        .button-primary:disabled {
            background-color: #6c757d;
            cursor: not-allowed;
        }
        
        /* Custom scrollbar styling */
        .box-container::-webkit-scrollbar {
            width: 8px;
        }
        
        .box-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .box-container::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 10px;
        }
        
        .box-container::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }
            .box-container {
                margin: 10px;
                padding: 20px;
            }
            
            .rating-button {
                padding: 10px 12px;
                font-size: 13px;
            }
        } 