﻿/* 2022 지방선거 graph.css */
.tab-container {
    text-align: center;
    margin-bottom: 20px;
}

.tab-container .tab-button {
    padding: 4px 12px;
    display: inline-block;
    margin: 5px;
    border: 1px solid #333;
    border-radius: 8px;
    cursor: pointer;
}

.tab-container .tab-button:hover {
    background-color: black;
    color: white;
}

.tab-container .tab-button:active {
    box-shadow: 0px 0px 1px 2px rgba(0, 0, 0, 0.3);
}

.tab-container .tab-button.deactive {
    color: #999;
    border-color: #999;
}

.tab-container .tab-button {
    transition: all 0.2s ease-in;
}

.no-data {
    text-align: center;
    font-size: 18px;
    color: #999;
    margin: 120px auto;
}