/* USA DataHub Frontend Styles */

.usadh-auto-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.usadh-data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.usadh-data-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.usadh-data-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.usadh-data-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.usadh-data-table tr:hover {
    background: #f5f5f5;
}

.usadh-data-table tr:last-child td {
    border-bottom: none;
}

/* Search Box */
.usadh-table-search {
    margin-bottom: 20px;
    padding: 12px;
    width: 100%;
    max-width: 400px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

.usadh-table-search:focus {
    outline: none;
    border-color: #667eea;
}

/* Stats Cards */
.usadh-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.usadh-stat-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}

.usadh-stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.usadh-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .usadh-data-table {
        font-size: 14px;
    }
    
    .usadh-data-table th,
    .usadh-data-table td {
        padding: 10px 8px;
    }
    
    .usadh-stats-container {
        grid-template-columns: 1fr;
    }
}
