/* starrating/assets/css/frontend.css */

h2 {
    color:#FFFFFF;
    text-align: center;
}

#starrating-form-container {
    background-color: #333333;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    margin: 20px auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.starrating-form h2 {
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.starrating-stars {
    direction: rtl;
    text-align: center;
    margin-bottom: 20px;
}

.starrating-stars input[type="radio"] {
    display: none;
}

.starrating-stars label {
    font-size: 40px;
    color: #ccc;
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.2s ease-in-out;
}

.starrating-stars label:hover,
.starrating-stars label:hover ~ label,
.starrating-stars input[type="radio"]:checked ~ label {
    color: #ffc107; /* Goldfarbe für Sterne */
}

.starrating-comment-field {
    margin-bottom: 20px;
}

.starrating-comment-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #FFFFFF;
}

.starrating-comment-field textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    min-height: 80px;
    font-size: 16px;
}

.starrating-form button[type="submit"] {
    background-color: #0073aa;
    color: #FFFFFF;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.starrating-form button[type="submit"]:hover {
    background-color: #005f8f;
}

#starrating-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    word-wrap: break-word; /* Wichtige Zeile für lange Links */
}

#starrating-message.success {
    background-color: #49D424;
    color: #FFFFFF;
    border-color: #49D424;
}

#starrating-message.error {
    background-color: #D42D24;
    color: #FFFFFF;
    border-color: #D42D24;
}

#starrating-message a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}

#starrating-message a:hover {
    text-decoration: underline;
}

.starrating-google-button {
    display: inline-block;
    background-color: #4285F4; /* Google Blau */
    color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.starrating-google-button:hover {
    background-color: #357ae8;
}

/* Anpassungen für kleinere Bildschirme */
@media (max-width: 600px) {
    #starrating-form-container {
        padding: 15px;
        margin: 10px;
    }

    .starrating-stars label {
        font-size: 35px;
        padding: 0 3px;
    }

    .starrating-form button[type="submit"],
    .starrating-google-button {
        padding: 10px 15px;
        font-size: 16px;
    }
}