/* =========================
   DESKTOP
   ========================= */

#serverTable td {
    white-space: nowrap;
    vertical-align: middle;
}

/* Kainos blokas */
.price-current {
    color: #d9534f;
    font-weight: bold;
    font-size: 16px;
    margin-left: 8px;
}

.price-old {
    display: inline;
    font-size: 12px;
    color: #999;
}

/* ✔ Tik sena kaina perbraukta */
.price-old-value {
    text-decoration: line-through;
    margin-right: 6px;
}

/* ❗ LABAI SVARBU — badge NIEKADA neperbrauktas */
.price-old .label,
.label-danger {
    text-decoration: none !important;
}

/* Discount badge */
.label-danger {
    font-size:  8px;
    padding: 1px 4px;
    vertical-align: middle;
    opacity: 0.85;
    display: inline-block;
}

.price-discount {
    display: inline-block;
}

.price-line {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

/* =========================
   MOBILE (CARD VIEW)
   ========================= */

@media (max-width: 768px) {

    #serverTable thead {
        display: none;
    }

    #serverTable,
    #serverTable tbody,
    #serverTable tr,
    #serverTable td {
        display: block;
        width: 100%;
    }

    #serverTable tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 12px;
        background: #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    #serverTable td {
        border: none;
        padding: 6px 0;
        text-align: left;
        white-space: normal;
    }

    /* Label (CPU, RAM ir t.t.) */
    #serverTable td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        font-size: 11px;
        color: #777;
        margin-bottom: 2px;
        text-transform: uppercase;
    }

    /* CPU highlight */
    #serverTable td[data-label="CPU"] {
        font-weight: 600;
        font-size: 14px;
    }

    /* Price block mobile */
    #serverTable td[data-label="Price"] {
        margin-top: 6px;
    }

    .price-current {
        font-size: 18px;
    }

    .price-old {
        font-size: 12px;
    }

    /* Order mygtukas */
    #serverTable td:last-child {
        text-align: center;
        margin-top: 10px;
    }

    #serverTable td:last-child .btn {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }
}
