﻿/* Estilos del Bloque de Detalles (Una Sola Columna) */
.detail-item {
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #f1f3f5;
}

.detail-label {
    display: block;
    color: #adb5bd;
    font-weight: 800;
    font-size: 0.65rem;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}

.detail-value {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.3;
}

/* Resto de estilos */
.selection-card {
    cursor: pointer;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: 0.2s;
    background: #fff;
    margin-bottom: 2px;
}

    .selection-card.selected {
        border-color: #0d6efd;
        background-color: #f0f7ff;
        box-shadow: 0 2px 4px rgba(13,110,253,0.1);
    }

.type-label {
    font-size: 0.6rem;
    color: #6c757d;
    font-weight: 700;
    text-transform: uppercase;
}

.price-main {
    font-size: 1.05rem;
    font-weight: 700;
    color: #00A1E0;
}

.price-old {
    font-size: 0.75rem;
    font-weight: 600;
    color: #adb5bd; /* Un gris más suave */
    text-decoration: line-through; /* ESTO HACE EL TACHADO */
    margin-bottom: -2px;
    display: block;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e9ecef;
    border: 1px solid #dee2e6;
}

    .status-dot.active {
        background: #0d6efd;
        border-color: #0d6efd;
    }

.detail-box {
    border: 1px solid #ced4da;
    border-radius: 4px;
    background: #fff;
}

.detail-header {
    background: #00A1E0;
    color: white;
    font-weight: 700;
}

.rotura-card {
    background: #f8fbff;
    border: 1px solid #e7f1ff;
    border-radius: 4px;
}

/* Página configuracion */

.form-label-configuracion {
    font-size: 0.65rem;
    font-weight: 800;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
}

.custom-table-configuracion tbody td {
    border-bottom: 1px solid #f8f9fa;
}

.input-group-text-configuracion {
    padding: 0.25rem 0.5rem;
}

.version-box-configuracion {
    border-style: dashed !important;
}

.card-configuracion {
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

    .card-configuracion:hover {
        /* transform: translateY(-4px); */
        box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
    }