/* ---------- Grid de regiones ---------- */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.table-ajustada {
    width: 100%;
    table-layout: auto;
}

.mi-td {
    white-space: nowrap;
    width: 1%;
}


.btn-region {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 14px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: all .2s ease;
    position: relative;
}
.btn-region:hover {
    border: 1px solid;
    border-color: #198754;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.btn-region.active {
    border-color: #198754;
    background: #198754;
    color: #fff;
}

.btn-region .region-name {
    font-weight: 600;
    font-size: .95rem;
    line-height: 1.2;
}

.btn-region .region-meta {
    font-size: .8rem;
    opacity: .85;
    margin-top: 4px;
}


.btn-region .region-rain {
    position: absolute;
    top: 30px;
    right: 6px;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* ---------- Tabla única ---------- */

.detail-panel {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}
.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #a7aaad;
}
.detail-header h5 {
    margin: 0;
    font-size: 1.1rem;
}
