/**
 * Puppy Status Shortcode Styles
 * 
 * Provides styling for the [puppy-status] shortcode based on availability taxonomy terms
 */

/* Base container styling */
.puppy-status-container {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    line-height: 1.0;
}

/* Available status (ID: 8) - Black text on green background */
.puppy-status-available {
    background-color: #46b450;
    color: #fff;
}

/* Not Available status (ID: 10) - White text on red background */
.puppy-status-not-available {
    background-color: #dc3545;
    color: #fff;
}

/* Adopted status (ID: 12) - White text on gray background */
.puppy-status-adopted {
    background-color: #666666;
    color: #fff;
}

/* Reserved status (ID: 11) - White text on blue background */
.puppy-status-reserved {
    background-color: #0073aa;
    color: #fff;
}

/* Default fallback styling for unknown statuses */
.puppy-status-default {
    background-color: #f8f9fa;
    color: #212529;
    border: 1px solid #dee2e6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .puppy-status-container {
        padding: 6px 10px;
        font-size: 0.9em;
    }
}
