.team-job-metrics-dashboard {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.dashboard-title {
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
}

.dashboard-title i {
    color: #3498db;
    margin-right: 10px;
}

.period-filter .form-group {
    display: flex;
    align-items: center;
}

.period-filter label {
    margin-right: 10px;
    font-weight: 500;
    color: #7f8c8d;
}

.period-filter label i {
    margin-right: 5px;
}

.metrics-section {
    margin-bottom: 30px;
}

.metrics-section h4 {
    color: #2c3e50;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.metrics-section h4 i {
    margin-right: 10px;
    color: #3498db;
}

.table th {
    font-weight: 600;
    color: #2c3e50;
    border-top: none;
}

.table th i {
    margin-right: 5px;
}

.country-card {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.country-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.country-flag {
    font-size: 2rem;
    margin-bottom: 10px;
}

.country-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.country-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

.dashboard-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ecf0f1;
    text-align: center;
}

@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .period-filter {
        margin-top: 15px;
        width: 100%;
    }
    
    .period-filter .form-group {
        width: 100%;
    }
    
    .period-filter select {
        width: 100%;
    }
}