/**
 * The Linkers System - Panel Linker Styles
 * 
 * CSS Completo del Panel de Linkers con:
 * - Header horizontal con logo 45px
 * - Banner slogan con degradé
 * - Footer con línea naranja
 * - Sistema de modales y toasts
 * - Tablas profesionales con paginación
 * - Layout 2 columnas para perfil
 * - Diseño responsive mobile-first
 *
 * @package    The_Linkers_System
 * @subpackage Assets/CSS
 * @version    2.0.0
 * @since      1.0.0
 */

/* ========================================
   VARIABLES CSS
   ======================================== */
:root {
    /* COLORES PRINCIPALES */
    --tls-primary: #FF5C39;              /* Naranja Radiante */
    --tls-primary-soft: #FF7043;         /* Naranja Suave */
    --tls-secondary: #0066C4;            /* Azul Medio */
    --tls-secondary-alt: #00AEEF;        /* Celeste */
    --tls-dark: #002D5A;                 /* Azul Profundo */
    --tls-bg: #EDECEB;                   /* Fondo Neutro */
    
    /* COLORES DE ESTADO */
    --tls-success: #10B981;
    --tls-success-dark: #059669;
    --tls-error: #EF4444;
    --tls-error-dark: #DC2626;
    --tls-warning: #F59E0B;
    --tls-warning-dark: #D97706;
    --tls-info: #3B82F6;
    
    /* GRISES */
    --tls-gray-50: #F9FAFB;
    --tls-gray-100: #F3F4F6;
    --tls-gray-200: #E5E7EB;
    --tls-gray-300: #D1D5DB;
    --tls-gray-400: #9CA3AF;
    --tls-gray-500: #6B7280;
    --tls-gray-600: #4B5563;
    --tls-gray-700: #374151;
    --tls-gray-800: #1F2937;
    --tls-gray-900: #111827;
    
    /* SPACING (8px base) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    
    /* BORDER RADIUS */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* SHADOWS */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
    
    /* TRANSITIONS */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
}

/* ========================================
   RESET Y BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.tls-linker-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--tls-bg);
    color: var(--tls-gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.tls-modal-open {
    overflow: hidden;
}

/* ========================================
   HEADER
   ======================================== */
.tls-linker-header {
    background: var(--tls-dark);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.tls-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px var(--space-3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}

/* Logo */
.tls-header-logo {}

.tls-logo-img {
    height: 45px;
    width: auto;
    display: block;
}

/* Usuario */
.tls-header-user {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.tls-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.tls-avatar-placeholder {
    background: var(--tls-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.tls-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tls-user-name {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.tls-user-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

/* Navegación */
.tls-linker-nav {
    background: var(--tls-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: block !important; /* Forzar visible siempre */
}

.tls-linker-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-3);
    display: flex;
    gap: var(--space-2);
}

.tls-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 14px 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all var(--transition-fast);
    border-bottom: 3px solid transparent;
    display: inline-block;
}

.tls-nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.tls-nav-link.active {
    color: white;
    border-bottom-color: var(--tls-primary);
    background: rgba(255, 92, 57, 0.1);
}

/* ========================================
   BANNER SLOGAN
   ======================================== */
.tls-slogan-banner {
    background: linear-gradient(135deg, var(--tls-dark) 0%, var(--tls-secondary) 50%, var(--tls-secondary-alt) 100%);
    padding: 20px var(--space-3);
    text-align: center;
    box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.tls-slogan-text {
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.tls-linker-main {
    min-height: calc(100vh - 200px);
    padding: var(--space-4) 0;
}

.tls-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-3);
}

/* ========================================
   FOOTER
   ======================================== */
.tls-linker-footer {
    background: var(--tls-dark);
    border-top: 4px solid var(--tls-primary);
    margin-top: var(--space-6);
    padding: var(--space-4) 0;
}

.tls-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-3);
    text-align: center;
}

.tls-footer-slogan {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-2);
}

.tls-footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* ========================================
   BOTONES
   ======================================== */
.tls-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.tls-btn-primary {
    background: linear-gradient(135deg, var(--tls-primary), var(--tls-primary-soft));
    color: white;
    box-shadow: 0 4px 12px rgba(255, 92, 57, 0.3);
}

.tls-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 92, 57, 0.4);
}

.tls-btn-secondary {
    background: white;
    color: var(--tls-dark);
    border: 2px solid var(--tls-gray-300);
}

.tls-btn-secondary:hover {
    border-color: var(--tls-gray-400);
    background: var(--tls-gray-50);
}

.tls-btn-ghost {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.tls-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.tls-btn-danger {
    background: var(--tls-error);
    color: white;
}

.tls-btn-danger:hover {
    background: var(--tls-error-dark);
}

.tls-btn-success {
    background: var(--tls-success);
    color: white;
}

.tls-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.tls-btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.tls-btn-block {
    width: 100%;
}

.tls-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========================================
   CARDS Y CONTENEDORES
   ======================================== */
.tls-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-3);
}

.tls-page-header {
    margin-bottom: var(--space-4);
}

.tls-page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--tls-dark);
    margin-bottom: var(--space-1);
}

.tls-page-subtitle {
    font-size: 16px;
    color: var(--tls-gray-600);
}

/* ========================================
   MÉTRICAS / STATS
   ======================================== */
.tls-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.tls-metric-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--tls-primary);
    transition: transform var(--transition-fast);
}

.tls-metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tls-metric-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: var(--space-2);
    background: linear-gradient(135deg, rgba(255, 92, 57, 0.15), rgba(255, 112, 67, 0.25));
}

.tls-metric-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--tls-dark);
    margin-bottom: 4px;
}

.tls-metric-label {
    font-size: 14px;
    color: var(--tls-gray-600);
    font-weight: 500;
}

.tls-metric-sublabel {
    font-size: 12px;
    color: var(--tls-gray-500);
    margin-top: 4px;
}

/* ========================================
   TABLAS
   ======================================== */
.tls-table-container {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-3);
}

.tls-table {
    width: 100%;
    border-collapse: collapse;
}

.tls-table thead {
    background: var(--tls-dark);
}

.tls-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.tls-table tbody tr {
    border-bottom: 1px solid var(--tls-gray-200);
    transition: background var(--transition-fast);
}

.tls-table tbody tr:nth-child(even) {
    background: var(--tls-gray-50);
}

.tls-table tbody tr:hover {
    background: rgba(0, 102, 196, 0.05);
}

.tls-table td {
    padding: 16px;
    font-size: 14px;
    color: var(--tls-gray-800);
}

/* ========================================
   PAGINACIÓN
   ======================================== */
.tls-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    padding: var(--space-3);
}

.tls-pagination-btn {
    padding: 8px 12px;
    border: 1px solid var(--tls-gray-300);
    background: white;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tls-pagination-btn:hover {
    background: var(--tls-gray-50);
    border-color: var(--tls-gray-400);
}

.tls-pagination-btn.active {
    background: var(--tls-secondary);
    color: white;
    border-color: var(--tls-secondary);
}

.tls-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tls-pagination-info {
    font-size: 14px;
    color: var(--tls-gray-600);
    padding: 0 var(--space-2);
}

/* ========================================
   FILTROS
   ======================================== */
.tls-filters-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-3);
}

.tls-filters-form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    align-items: end;
}

.tls-filter-group {
    flex: 1;
    min-width: 200px;
}

.tls-filter-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--tls-gray-700);
    margin-bottom: 6px;
}

.tls-filter-select,
.tls-filter-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--tls-gray-300);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: border-color var(--transition-fast);
}

.tls-filter-select:focus,
.tls-filter-input:focus {
    outline: none;
    border-color: var(--tls-secondary);
    box-shadow: 0 0 0 3px rgba(0, 102, 196, 0.1);
}

.tls-filter-actions {
    display: flex;
    gap: var(--space-1);
}

/* ========================================
   BADGES
   ======================================== */
.tls-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tls-badge-primary {
    background: rgba(255, 92, 57, 0.15);
    color: var(--tls-primary);
}

.tls-badge-secondary {
    background: rgba(0, 102, 196, 0.15);
    color: var(--tls-secondary);
}

.tls-badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--tls-success-dark);
}

.tls-badge-error {
    background: rgba(239, 68, 68, 0.15);
    color: var(--tls-error-dark);
}

.tls-badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--tls-warning-dark);
}

.tls-badge-info {
    background: rgba(59, 130, 246, 0.15);
    color: var(--tls-info);
}

/* ========================================
   MODALES
   ======================================== */
.tls-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.tls-modal-overlay.tls-modal-active {
    opacity: 1;
    visibility: visible;
}

.tls-modal-dialog {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-normal);
}

.tls-modal-active .tls-modal-dialog {
    transform: scale(1) translateY(0);
}

.tls-modal-dialog-confirm {
    max-width: 450px;
}

.tls-modal-content-confirm {
    padding: var(--space-4);
    text-align: center;
}

.tls-modal-icon-container {
    margin-bottom: var(--space-3);
}

.tls-modal-icon-warning {
    color: var(--tls-warning);
}

.tls-modal-icon-danger {
    color: var(--tls-error);
}

.tls-modal-icon-info {
    color: var(--tls-secondary);
}

.tls-modal-title-confirm {
    font-size: 24px;
    font-weight: 700;
    color: var(--tls-dark);
    margin-bottom: var(--space-2);
}

.tls-modal-message-confirm {
    font-size: 15px;
    color: var(--tls-gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.tls-modal-actions-confirm {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
}

/* ========================================
   TOASTS
   ======================================== */
.tls-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    pointer-events: none;
}

.tls-toast {
    min-width: 320px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    transform: translateX(400px);
    opacity: 0;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.tls-toast.tls-toast-show {
    transform: translateX(0);
    opacity: 1;
}

.tls-toast-success {
    border-left: 4px solid var(--tls-success);
}

.tls-toast-error {
    border-left: 4px solid var(--tls-error);
}

.tls-toast-warning {
    border-left: 4px solid var(--tls-warning);
}

.tls-toast-info {
    border-left: 4px solid var(--tls-info);
}

.tls-toast-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.tls-toast-success .tls-toast-icon {
    color: var(--tls-success);
}

.tls-toast-error .tls-toast-icon {
    color: var(--tls-error);
}

.tls-toast-warning .tls-toast-icon {
    color: var(--tls-warning);
}

.tls-toast-info .tls-toast-icon {
    color: var(--tls-info);
}

.tls-toast-content {
    flex: 1;
}

.tls-toast-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--tls-gray-900);
    margin-bottom: 4px;
}

.tls-toast-message {
    font-size: 14px;
    color: var(--tls-gray-600);
    line-height: 1.4;
}

.tls-toast-close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--tls-gray-400);
    transition: color var(--transition-fast);
}

.tls-toast-close:hover {
    color: var(--tls-gray-600);
}

.tls-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    animation: toastProgress 4000ms linear;
}

@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0%; }
}

/* ========================================
   LOADING OVERLAY
   ======================================== */
.tls-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.tls-loading-overlay.tls-loading-active {
    opacity: 1;
    visibility: visible;
}

.tls-loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.tls-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--tls-gray-200);
    border-top-color: var(--tls-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.tls-loading-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--tls-gray-700);
}

/* ========================================
   LAYOUT 2 COLUMNAS (PERFIL)
   ======================================== */
.tls-profile-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--space-4);
}

.tls-profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.tls-profile-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

/* ========================================
   EMPTY STATE
   ======================================== */
.tls-empty-state {
    text-align: center;
    padding: var(--space-6) var(--space-3);
}

.tls-empty-icon {
    font-size: 64px;
    margin-bottom: var(--space-3);
    opacity: 0.5;
}

.tls-empty-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--tls-gray-800);
    margin-bottom: var(--space-2);
}

.tls-empty-text {
    font-size: 16px;
    color: var(--tls-gray-600);
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .tls-profile-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Header */
    .tls-header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }
    
    .tls-logo-img {
        height: 36px;
    }
    
    /* Nav horizontal -> vertical en mobile */
    .tls-linker-nav {
        flex-direction: column;
        gap: 0;
    }
    
    .tls-nav-link {
        width: 100%;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .tls-nav-link.active {
        border-left-color: var(--tls-primary);
    }
    
    /* Métricas */
    .tls-metrics-grid {
        grid-template-columns: 1fr;
    }
    
    /* Filtros */
    .tls-filters-form {
        flex-direction: column;
    }
    
    .tls-filter-group {
        width: 100%;
    }
    
    /* Toasts */
    .tls-toast-container {
        top: 16px;
        right: 16px;
        left: 16px;
    }
    
    .tls-toast {
        min-width: auto;
    }
    
    /* Tablas responsive */
    .tls-table-container {
        overflow-x: auto;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.tls-text-center { text-align: center; }
.tls-text-right { text-align: right; }
.tls-text-left { text-align: left; }

.tls-mb-0 { margin-bottom: 0; }
.tls-mb-1 { margin-bottom: var(--space-1); }
.tls-mb-2 { margin-bottom: var(--space-2); }
.tls-mb-3 { margin-bottom: var(--space-3); }
.tls-mb-4 { margin-bottom: var(--space-4); }

.tls-mt-0 { margin-top: 0; }
.tls-mt-1 { margin-top: var(--space-1); }
.tls-mt-2 { margin-top: var(--space-2); }
.tls-mt-3 { margin-top: var(--space-3); }
.tls-mt-4 { margin-top: var(--space-4); }

.tls-hidden { display: none !important; }
.tls-visible { display: block !important; }

/* ========================================
   MENSAJES OPTIMIZADOS (COMPARTIR)
   ======================================== */
.tls-mensajes-section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--tls-dark);
}

.tls-mensajes-section-desc {
    color: var(--tls-gray-600);
    margin-bottom: 20px;
}

.tls-insight-box {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--tls-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tls-insight-text {
    color: #9A3412;
    font-weight: 500;
}

.tls-mensaje-card {
    background: var(--tls-gray-50);
    padding: 16px;
    border-radius: 12px;
    border: 2px solid transparent;
}

.tls-mensaje-card.es-mejor {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border-color: #22C55E;
}

.tls-mensaje-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.tls-mensaje-nombre {
    font-weight: 600;
    color: var(--tls-dark);
}

.tls-mensaje-badge-mejor {
    background: #22C55E;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin-left: 8px;
}

.tls-mensaje-stats {
    font-size: 12px;
    color: var(--tls-gray-500);
}

.tls-mensaje-contenido {
    background: white;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    white-space: pre-wrap;
    font-size: 14px;
    color: var(--tls-gray-700);
    line-height: 1.5;
}

.tls-mensaje-acciones {
    display: flex;
    gap: 8px;
}

.tls-mensaje-acciones .tls-btn {
    flex: 1;
}

.tls-mensaje-acciones .tls-btn:last-child {
    flex: 0 0 auto;
}

.tls-tipo-selector {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--tls-gray-200);
}

.tls-tipo-selector-label {
    font-size: 13px;
    color: var(--tls-gray-500);
}

.tls-tipo-selector-btns {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
