/* Estilos globales para TravelCMS actualizado */

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
   
}

a { color: #a9cb2d; text-decoration: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}



/* Chat */
.chat-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #0f2246;
    border: 1px solid #18325f;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.chat-header {
    background: #081a32;
    padding: 10px;
    font-weight: bold;
    border-bottom: 1px solid #18325f;
}
.chat-body {
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
    font-size: 14px;
}
.chat-body form div { margin-bottom: 10px; }
.chat-body input, .chat-body textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #31466e;
    border-radius: 8px;
    background: #0b1e3e;
    color: #fff;
}
.chat-body button {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 8px;
    background: #a9cb2d;
    color: #0d1b33;
    font-weight: bold;
    cursor: pointer;
}

.chat-success { color: #a9cb2d; padding: 10px; }
.chat-error { color: #ff5757; padding: 10px; }

/* KPIs dashboard */
.grid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
.card {
    background: #0f2246;
    border: 1px solid #18325f;
    border-radius: 16px;
    padding: 16px;
    overflow: auto;
}
.kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); gap: 12px; }
.kpi {
    background: #0b1e3e;
    border: 1px solid #18325f;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}
.kpi strong { display: block; font-size: 22px; color: #a9cb2d; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { border-bottom: 1px solid #18325f; padding: 8px 6px; font-size: 14px; }
.badge {
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: bold;
    margin-right: 4px;
}
.badge.ok { background: #12385e; color: #a9cb2d; }
.badge.warn { background: #3d2647; color: #ffc857; }
.badge.danger { background: #4a1b1b; color: #ff9b9b; }


.tws-cards{display:flex;flex-direction:column;gap:10px;margin:8px 0}
.tws-card{display:flex;gap:10px;background:var(--panel-bg,#0E1F3F);border:1px solid rgba(255,255,255,.08);
  border-radius:12px;overflow:hidden}
.tws-thumb img{width:120px;height:90px;object-fit:cover;display:block}
.tws-body{padding:8px 10px;flex:1;min-width:0}
.tws-title{font-weight:800;margin-bottom:2px}
.tws-date{opacity:.85}
.tws-price{margin-top:4px;font-weight:900}
.tws-cta{margin-top:6px}
.tws-btn{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;
  background:var(--accent,#A9CB2D);color:#0D1B2A;text-decoration:none;font-weight:800}
.tws-btn:hover{filter:brightness(1.05)}


