.tool-content {
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    padding: 1.2em;
    border-radius: .6em;
    position: relative;
}

h2{
    font-size: 18px;
    text-align: center;
}

.date{
    margin: 1.2em 0;
    color: var(--primary-color);
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-family: var(--font-simple);
}

hr{
    border-width: 0;
    height: 1px;
    width: 100%;
    background-color: #eee;
    margin-bottom: 1.5em;
}

.info-panel{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.info-panel .info-row{
    display: flex;
    align-items: center;
    background-color: var(--main-bg);
    padding: 6px 15px;
    border-radius: 6px;
}

.info-panel .info-row .info-value{
    color: var(--primary-color);
}

.info-panel .info-row:hover{
    background-color: #786ef8;
}

.info-panel .info-row:hover .info-label{
    color: #fff;
}

.info-panel .info-row:hover .info-value{
    color: #fff;
}

.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: 500;
    padding: 10px 15px;
    white-space: nowrap;
    font-size: 14px;
}

.table-container table td:nth-child(2){
    color: var(--primary-color);
    font-weight: 400;
}

.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;
    }

    .flip-clock-wrapper ul li a div div.inn{
        font-size: 50px;
    }

    .flip-clock-wrapper ul{
        height: 68px;
        margin: 2px;
    }

    .flip-clock-wrapper ul li{
        line-height: 73px;
    }

    .flip-clock-divider{
        height: 90px;
        width: 30px;
    }
}