﻿body {
    background-color: rgb(248, 248, 248);
}

select {
    border-radius: 10px;
    border: solid 1px rgba(184, 188, 180, 1);
    background-color: rgba(255,255,255,1);
    height: 40px;
    font-size: 14px;
    padding-right: 10px;
    padding-left: 10px;
}

input {
    border-radius: 10px;
    border: solid 1px rgba(184, 188, 180, 1);
    background-color: rgba(255,255,255,1);
    font-size: 14px;
    height: 40px;
    padding-right:10px;
    padding-left:10px;
}

    input[disabled] {
        background-color: rgb(229, 229, 229, 0.50);
        color: #666;
        cursor: not-allowed;
        opacity: 1;
    }

textarea {
    border-radius: 10px;
    border: solid 1px rgba(184, 188, 180, 1);
    background-color: rgba(255,255,255,1);
    font-size: 14px;
    height: 140px;
    padding-right: 10px;
    padding-left: 10px;
}

table{
    width:100%;
    min-width:fit-content;
}

table tr {
    border-bottom: 1px solid rgba(221, 214, 214, 1);
    height:40px;
}

button {
    border-radius: 8px;
    height: 36px;
    border: solid 1px rgba(221, 214, 214, 1);
    min-width: 70px;
}

p{
    margin-bottom: 0;
}

.DivTarjetaPrincipal {
    background-color: rgba(255,255,255,1);
    border-radius: 12px;
    border: solid 1px rgba(210,210,210,0.5);
    padding: 20px;
    box-shadow: 0 1px 0px 2px rgba(229, 233, 226, 0.6);
    width: 95%;
    max-width: 1000px;
    z-index: 1;
}

.DivCards {
    background-color: rgba(255,255,255,1);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 10px 5px 15px 5px rgb(196, 196, 196);
    position: relative;
}

    .DivCards::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: -2px;
        bottom: -3px;
        left: -3px;
        right: -3px;
        background: linear-gradient(150deg, rgba(133, 221, 32, 1), rgba(5, 94, 163, 1));
        border-radius: 12px; /* igual que el elemento principal */
    }

.DivEnBloque {
    display: flex;
    flex-direction: column;
    margin-top:20px;
}

.FormulariosDeBusquedaTamano{
    max-width: 600px;
    width:100%;
}

.MenuDeRutaDesplazamiento {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left:2%;
 
}

.MenuDeRutaDesplazamiento a {
    text-decoration: none;
    color: #666;
}

.MenuDeRutaDesplazamiento span {
    font-size:20px;
    vertical-align: middle;
}

.MenuDeRutaDesplazamiento a:hover {
    text-decoration: underline;
}

.MenuDeRutaDesplazamiento .active {
    font-weight: bold;
    color: #333;
}