﻿/* CSS para cabecera con logo horizontal y botones en la parte inferior */

/* Contenedor principal */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

/* Header container - Estructura en columnas para separar info y botones */
.header-container {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 30px;
}

/* Sección con logo y datos de la empresa - en horizontal */
.company-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f1f1;
    width: 100%;
}

    .company-header img {
        max-width: 100px;
        height: auto;
        margin-right: 15px;
    }

.company-title {
    color: #343a40;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.company-contact {
    color: #6c757d;
    margin-bottom: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .company-contact i {
        color: #0d6efd;
        font-size: 1rem;
    }

/* Sección de botones, siempre en parte inferior y centrada */
.header-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-top: 10px;
    width: 100%;
}

/* Estilo para los botones dropdown */
.btn-outline-primary,
.btn-outline-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    font-size: 0.95rem;
    border-radius: 6px;
    background-color: #fff;
    transition: all 0.2s ease;
}

.btn-outline-primary {
    color: #0d6efd;
    border: 1px solid #0d6efd;
}

    .btn-outline-primary:hover {
        background-color: #f0f7ff;
    }

.btn-outline-secondary {
    color: #6c757d;
    border: 1px solid #6c757d;
}

    .btn-outline-secondary:hover {
        background-color: #f8f9fa;
    }

/* Icono en botones */
.btn i {
    font-size: 0.9rem;
}

/* Dropdown menu */
.dropdown-menu {
    border-radius: 6px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
    min-width: 200px;
}

.dropdown-item {
    padding: 8px 15px;
    transition: background-color 0.2s ease;
}

    .dropdown-item:hover {
        background-color: #f0f7ff;
    }

/* Ajustes para móviles */
@media (max-width: 767px) {
    .company-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .company-header img {
            margin-right: 0;
            margin-bottom: 15px;
        }

    .company-title {
        font-size: 1.2rem;
    }

    .company-contact {
        justify-content: center;
    }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 480px) {
    .header-actions {
        flex-direction: column;
        width: 100%;
    }

    .dropdown {
        width: 100%;
    }

    .btn-outline-primary,
    .btn-outline-secondary {
        width: 100%;
        justify-content: center;
    }
}
