/**
 * Check-in Filter Styling for Frontend Event Statistics
 * 
 * Provides visual styling for participant check-in status indicators
 * 
 * @package MyListing_Tickets
 * @version 1.2.3
 */

.buyers-table-frontend .fully-checked-in {
    background-color: #f0f9f0 !important;
}

.buyers-table-frontend .fully-checked-in td {
    color: #065f46;
}

.buyers-table-frontend .not-checked-in {
    background-color: #f9f9f9 !important;
}

.buyers-table-frontend .not-checked-in td {
    color: #666;
}

.buyers-table-frontend .partial-checked-in {
    background-color: #fff8e1 !important;
}

.buyers-table-frontend .partial-checked-in td {
    color: #92400e;
}

.buyers-table-frontend .checkin-details {
    margin-top: 5px;
    padding: 5px;
    background: #f5f5f5;
    border-left: 3px solid #4caf50;
    font-size: 12px;
    color: #666;
}

.buyers-table-frontend .checkin-filter-wrapper {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.buyers-table-frontend .checkin-filter-wrapper label {
    margin: 0;
    font-weight: 600;
}

.buyers-table-frontend .checkin-filter-wrapper select {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .buyers-table-frontend .checkin-filter-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}
