﻿
.header-container-invoice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(45deg,#bd1217,#050100);
    color: white;
    padding: 10px 20px;
    border-bottom: 2px solid #343a40;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    height: 50px;
    margin:0px;
}


.select-container {
    display: flex;
    gap: 20px; /* Espacio entre los dos selects */
    align-items: flex-start; /* Alinea los select al tope */
}

.select-wrapper {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

select {
    width: 200px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.header-left {
    flex-grow: 1;
    text-align: left;
}

.header-right {
    text-align: right;
}
