.tool-content {
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    padding: 1.2em;
    border-radius: .6em;
    position: relative;
}

.table-container table th{
    border-width: 0;
    font-family: var(--font-simple);
    font-weight: 600;
    padding: 10px 15px;
    font-size: 15px;
}

.table-container table td{
    border-width: 0;
    font-family: var(--font-simple);
    font-weight: 400;
    padding: 10px 15px;
    white-space: nowrap;
    font-size: 14px;
}

.table-container table td:nth-child(2){
    color: var(--primary-color);
}

.table-container table td span{
    white-space: nowrap;
}

.table-container table td:nth-child(1){
    color: var(--primary-color);
}

.table-container table td:nth-child(1) a:hover{
    text-decoration: underline;
}

.table-container table td:nth-child(1) span{
    color: #111;
    margin-left: 2px;
}

.timezone-badge{
    padding: 1px 8px;
    background-color: #e8ecff;
    color: var(--primary-color);
    border-radius: 6px;
    font-family: monospace;
    font-weight: bold;
}

.dst-status{
    padding: 1px 8px;
    border-radius: 6px;
    font-size: 13.5px;
}

.dst-inactive {
    background-color: var(--main-bg);
}

.dst-active {
    background: #fff3e0;
    color: #ef6c00;
}

@media (max-width: 768px) {
    .tool-content {
        padding: .8em !important;
    }

    .table-container table th, .table-container table td{
        padding: 6px 8px !important;
    }

    .timezone-badge{
        font-weight: normal;
        font-family: var(--font-simple);
        font-size: 13.5px;
        padding: 0 6px;
    }
}