
.traffic-container {
    max-width: 500px;
    margin: auto;
}

input[type="date"], button {
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
}

.traffic-card {
    background: #2f3241;
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

.traffic-card:hover {
    transform: translateY(-5px);
}

.traffic-card p {
    margin: 0;
    font-size: 14px;
    color: #aaa;
}

.traffic-card h2 {
    font-size: 36px;
    margin: 10px 0 0;
}
