.traffic-form {
    max-width: 100%;
    width: 100%;
}
.form-area {
    width: 100%;
    max-width: 800px; /* 최대 너비 제한 */
    margin: 0 auto; /* 부모 요소 내에서 중앙 정렬 */
    display: block;
    flex-direction: column;
    align-items: center;
}
.form-label {
    color: white; /* 라벨의 텍스트 색상을 흰색으로 설정 */
}

.custom-tabs {
    display: flex;
    justify-content: center;
    border-bottom: none;
    gap: 30px; /* 탭 간격 조정 */
}

.custom-tabs .nav-link {
    color: #ffffff;
    background-color: #555;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px; /* 탭 크기 조정 */
    border: 2px solid transparent;
    border-radius: 10px 10px 10px 10px;
    transition: all 0.3s ease-in-out;
}

.custom-tabs .nav-link:hover {
    color: black;
    background: #f8f9fa;
    border-color: #555;
}

