/**
 * O Quintal Features - Plugin Styles
 */

.oqf-notice {
    padding: 1.5rem;
    background: #fef3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    text-align: center;
}

.oqf-notice a {
    color: var(--orange, #e8601c);
    font-weight: 600;
}

.oqf-success {
    padding: 1.5rem;
    background: #d4edda;
    border: 1px solid #28a745;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #155724;
}

.oqf-form {
    max-width: 600px;
}

.oqf-form .form-group {
    margin-bottom: 1.25rem;
}

.oqf-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
}

.oqf-form .form-control {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.oqf-form .form-control:focus {
    outline: none;
    border-color: #e8601c;
    box-shadow: 0 0 0 3px rgba(232, 96, 28, 0.1);
}

.oqf-dashboard .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .oqf-dashboard .grid-3 {
        grid-template-columns: 1fr;
    }
}

.oqf-events-list .event-card {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.oqf-events-list .event-card:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
