body{
    background-color: #f5f5f5;
    font-size: 14px;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25) !important;
    background-color: #333 !important;
    padding: 10px 20px;
    z-index: 999;
}

.nav, .navbar  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: #333 !important;
}



.container-fluid {
    max-width: 1286px;
}

.nav-link {
    color: #fff;
    margin-right:25px ;
}

.nav-link:hover {
    color: #5582fd !important;
    border-bottom: 5px solid #439775;
}

main {
    padding-top: 140px;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: start;
}

.container {
    padding: 30px;
    background-color: #e9e9e9;
    border-radius: 25px;
}

select {
    width: 100%; /* Establece el ancho al 100% */
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem; /* Relleno interno */
    font-size: 16px; /* Tamaño de fuente */
    border: 1px solid #ccc; /* Borde con color gris claro */
    border-radius: 5px; /* Bordes redondeados */
    background-color: #f9f9f9; /* Color de fondo */
}

.autoheigth {
    resize: none; /* Evita que el usuario redimensione el textarea manualmente */
    overflow: hidden; /* Oculta el desbordamiento de contenido */
    transition: height 0.3s; /* Agrega transición suave al cambio de altura */
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin-bottom: 0;
   
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin: 0;
    opacity: 0;
    cursor: pointer !important;
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #495057;
    color: white;
}

.cliente {
    background-color: #d3d3d3;
    border-radius: 40px 0px 40px 40px;
}

.admin {
    background-color: #3d4e5d;
    color: white;
    border-radius: 0px 40px 40px 40px;
}

.comentario {
    padding: 25px;
}

.frmTicket{
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .navbar-collapse{
        display: none !important;
    }
    
    .frmTicket {
        flex-direction: column;
        gap: 3em;
    }

    .frmTicket > div {
        width: 100%;
    }
}