/* ... (previous styles remain the same) ... */

/* Additional styles for new features */
.filter-input, .filter-select {
    padding: 10px 16px;
    border: 2px solid #e1e5ed;
    border-radius: 12px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
}

.filter-input:focus, .filter-select:focus {
    outline: none;
    border-color: #0a6bff;
    box-shadow: 0 0 0 4px rgba(10, 107, 255, 0.1);
}

.filters {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-input {
    flex: 1;
    min-width: 200px;
}

.filter-select {
    min-width: 150px;
}

.clear-btn {
    width: auto;
    padding: 10px 20px;
    background: #6c7a9a;
}

.clear-btn:hover {
    background: #5a6878;
}

.table-wrapper {
    overflow-x: auto;
}

/* Country flag styling */
td .flag-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .filters {
        flex-direction: column;
    }
    
    .filter-input, .filter-select {
        width: 100%;
        min-width: unset;
    }
    
    .clear-btn {
        width: 100%;
    }
}

/* Table improvements */
table {
    font-size: 13px;
}

th {
    white-space: nowrap;
    font-size: 11px;
}

td {
    vertical-align: middle;
    padding: 10px 12px;
}

/* Auto-fill email indicator */
#emailSource {
    display: block;
    margin-top: 4px;
}

/* Status colors */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.status-success {
    background: #d4edda;
    color: #155724;
}

/* Hover effects on table rows */
tr:hover {
    background: #f8f9fa;
    cursor: default;
}

/* Stats cards hover */
.stat-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}