/* frontend/css/tabmessage.css */

.tabmessage-wrapper {
    display: flex;
    align-items: center;
    background-color: #fafafa; /* Un gris suave de fondo */
    padding: 12px;
    border-bottom: 2px solid #1e2f41; /* Una línea azul institucional abajo */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.tabmessage-logo {
    height: 78px; /* Ajusta el tamaño del logo según necesites */
    margin-right: 15px;
}

.tabmessage-text {
    display: flex;
    flex-direction: column; /* Keep your column structure */
    flex: 1;                /* Takes up available space without breaking */
    min-width: 0;           /* CRITICAL: Allows flex items to shrink below content size without overflowing */
    overflow: hidden;       /* Hides any overflow */
}

/* Apply this to the text element (e.g., <p>, <span>) inside .tabmessage-text */
.tabmessage-text p, 
.tabmessage-text span {
    white-space: nowrap;    /* Forces text to stay on a single line */
    overflow: hidden;       /* Hides overflowing text */
    text-overflow: ellipsis;/* Adds "..." if the text is too long for the screen */
    margin: 0;              /* Removes default margins that might throw off alignment */
}

.tabmessage-title {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    color: #0056b3; /* Título en color azul institucional */
}

.tabmessage-subtitle {
    margin: -4px 0 0 0;
    margin-right: 55px;
    font-size: 24px;
    color: #666;
    
}