
.gft-ts-box {
    box-sizing: border-box;
    width: 100%;
    margin: 0 0 18px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: #2d2e30;
    color: #f2f2f2;
    font-size: 14px;
    line-height: 1.45;
}

.gft-ts-box__title {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.3;
}

.gft-ts-box__row {
    display: grid;
    grid-template-columns: minmax(90px, auto) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin: 6px 0;
}

.gft-ts-box__row > span {
    opacity: 0.78;
}

.gft-ts-box__row > strong {
    min-width: 0;
    text-align: right;
    overflow-wrap: anywhere;
    font-weight: 600;
}

.gft-ts-box__status {
    color: #d04a4a;
}

.gft-ts-box.is-online .gft-ts-box__status {
    color: #55c46b;
}

.gft-ts-box__button {
    display: block;
    margin-top: 14px;
    padding: 9px 12px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.10);
    color: inherit;
    transition: background-color .15s ease, transform .15s ease;
}

.gft-ts-box__button:hover,
.gft-ts-box__button:focus {
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
    transform: translateY(-1px);
}

@media (max-width: 420px) {
    .gft-ts-box__row {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .gft-ts-box__row > strong {
        text-align: left;
    }
}
