/**
 * NC Pet Project Core Plugin Styles
 *
 * Minimal styles that supplement the child theme.
 * Most styling lives in the child theme's style.css.
 */

/* Form loading states */
.ncpet-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success messages */
.ncpet-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    color: #1a4d2e;
}

/* Error messages */
.ncpet-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: #721c24;
    margin-bottom: 1rem;
}

/* Admin voucher page */
.ncpet-approve {
    margin-right: 4px !important;
}

/* Map legend responsive */
@media (max-width: 480px) {
    .ncpet-map-legend {
        font-size: 10px !important;
        padding: 6px 10px !important;
    }
}
