/**
 * Frontend Styles for WooCommerce Giving Statements
 */

.wc-giving-statements {
    padding: 20px 0;
}

.wc-giving-statements h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.wc-giving-statements-form {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.wc-giving-statements-form .form-row {
    margin-bottom: 20px;
}

.wc-giving-statements-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.wc-giving-statements-form select {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.wc-giving-statements-form select:focus {
    outline: none;
    border-color: #96588a;
    box-shadow: 0 0 0 1px #96588a;
}

.wc-giving-statements-button {
    background-color: #96588a;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wc-giving-statements-button:hover {
    background-color: #7a4572;
    color: #fff;
}

.wc-giving-statements-info {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 4px;
    margin-top: 30px;
}

.wc-giving-statements-info h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.wc-giving-statements-info p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
}

.wc-giving-statements-info p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .wc-giving-statements-form select {
        max-width: 100%;
    }

    .wc-giving-statements-button {
        width: 100%;
    }
}
