/* Styles for Opinie Rekurencja WP plugin frontend */

.orw-container {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
}

.orw-logo {
    max-width: 300px;
    margin-bottom: 30px;
}

.orw-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.orw-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.orw-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.orw-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
    min-width: 200px;
}

.orw-button:hover {
    border-color: #0073aa;
    box-shadow: 0 4px 15px rgba(0,115,170,0.2);
}

.orw-button-yes {
    border-color: #4CAF50;
}

.orw-button-yes:hover {
    background: #4CAF50;
    color: white;
}

.orw-button-no {
    border-color: #f44336;
}

.orw-button-no:hover {
    background: #f44336;
    color: white;
}

.orw-ratings {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.orw-rating {
    text-align: center;
}

.orw-rating img {
    height: 50px;
    margin-bottom: 10px;
}

.orw-stars {
    color: #FFD700;
    font-size: 14px;
}

.orw-feedback-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.orw-feedback-form textarea {
    width: 100%;
    min-height: 150px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.orw-feedback-form input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.orw-feedback-form label {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-size: 14px;
}

.orw-submit-button {
    background: #4CAF50;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.orw-submit-button:hover {
    background: #45a049;
}

.orw-footer {
    background: #f9f9f9;
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: auto;
}

.orw-success-message {
    background: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Floating element */
#orw-float-element {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0073aa;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 9999;
}

#orw-float-element a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive styles */
@media (max-width: 767px) {
    .orw-container {
        padding: 20px;
        margin: 20px auto;
    }
    
    .orw-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .orw-button {
        width: 100%;
    }
    
    .orw-ratings {
        flex-direction: column;
        gap: 20px;
    }
}