.traffic__inner {
    width: 100%;
}

.traffic__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.traffic__wrap-title {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.traffic__card {
    border-radius: 16px;
    width: 100%;
    background: var(--primary-color);
    padding: 1rem 2rem 1rem 0;
    color: white;
    min-height: 180px;
}

.empty__state {
    text-align: center;
    margin: auto;
}

.empty__state__title {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.empty__state__text {
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.empty__state__btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}
.empty__state__btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.traffic__btn-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#myChart {
    width: 100% !important;
    height: auto !important;
  }
