
    .wcer-review-form {
        max-width: 600px;
        margin: 20px auto;
        border-radius: 5px;
        position: relative;
        z-index: 1;
    }
    .wcer-field {
        margin-bottom: 15px;
    }
    .wcer-field label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }
    .wcer-field input, .wcer-field select, .wcer-field textarea {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    .wcer-star-rating {
        display: flex;
        gap: 5px;
    }
    .wcer-star {
        font-size: 24px;
        cursor: pointer;
        color: #ccc;
    }
    .wcer-star.selected {
        color: #f39c12;
    }
    .wcer-char-count {
        font-size: 12px;
        color: #666;
        display: block;
        margin-top: 5px;
    }
    .wcer-submit {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 16px;
    }
    .wcer-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
    .wcer-toast {
        display: none;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #28a745;
        color: #fff;
        padding: 10px 20px;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 99999;
        min-width: 200px;
        text-align: center;
        opacity: 0;
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
        transform: translateY(20px);
    }
    .wcer-toast.show {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    