.custom-review-form {
    background: #fff;
    padding: 25px 30px;
    border-radius: 25px;
    border: 3px solid #00008B;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.custom-review-form label {
    display: block;
    margin-bottom: 8px;
    color: #00008B;
    font-weight: bold;
    font-size: 15px;
}

.custom-review-form input[type="text"],
.custom-review-form input[type="email"],
.custom-review-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    margin-bottom: 18px;
    background: #f8f9fa;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.custom-review-form input[type="text"]:focus,
.custom-review-form input[type="email"]:focus,
.custom-review-form textarea:focus {
    border-color: #00008B;
    outline: none;
}

.custom-review-form textarea {
    min-height: 120px;
    resize: vertical;
}

.custom-review-form input[type="submit"] {
    background: #00008B;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.custom-review-form input[type="submit"]:hover {
    background: #FF69B4;
    transform: scale(1.05);
}

.comment-notes {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}
