﻿/* ======================================
   DASHBOARD CHITREANA – TEKTRACK LAYOUT FIX
   ====================================== */

body {
    background-color: #f4f7fb !important;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* ====== FIX LAYOUT PRINCIPAL ====== */

/* Tabla principal que arma TekTrack */
form > table {
    width: 100% !important;
    table-layout: fixed;
}

/* TODAS las celdas */
form > table > tbody > tr > td {
    vertical-align: top;
}

/* OCULTAR columna izquierda vacía/gráfica */
form > table > tbody > tr > td:first-child {
    display: none !important;
}

/* Forzar contenido a ocupar todo el ancho */
form > table > tbody > tr > td:last-child {
    width: 100% !important;
    padding: 25px 30px !important;
}

/* ====== GRIDVIEW (PAQUETES) ====== */

table.DataGrid {
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
    border-collapse: collapse;
}

/* Header */
table.DataGrid th {
    background-color: #0B4DA2 !important;
    color: #ffffff !important;
    padding: 12px 10px;
    font-size: 14px;
    text-align: left;
}

/* Celdas */
table.DataGrid td {
    padding: 12px 10px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

/* Hover */
table.DataGrid tr:hover {
    background-color: #f1f6ff;
}

/* Links */
table.DataGrid a {
    color: #0B4DA2;
    font-weight: 600;
    text-decoration: none;
}

/* Títulos */
h1, h2, h3 {
    color: #0B4DA2;
}
