/*====================================================
SIP-ACT CORE
Consulta RTV
====================================================*/

.consultaRTV{

    max-width:1200px;
    margin:40px auto;
    font-family:'Segoe UI',sans-serif;

}

.tituloRTV{

    text-align:center;
    margin-bottom:35px;

}

.tituloRTV h2{

    color:#0D6B3F;
    font-size:34px;
    margin-bottom:10px;

}

.tituloRTV p{

    color:#666;
    font-size:17px;

}

.busquedaRTV{

    background:#F7F8FA;

    border-radius:12px;

    padding:30px;

    border:1px solid #DDD;

}

.grupoBusqueda{

    display:flex;

    gap:15px;

    margin-top:15px;

}

#txtPlaca{

    flex:1;

    padding:14px;

    font-size:18px;

    border-radius:8px;

    border:1px solid #CCC;

}

#btnConsultar{

    background:#0D6B3F;

    color:white;

    border:none;

    padding:15px 30px;

    border-radius:8px;

    cursor:pointer;

    font-size:17px;

}

#btnConsultar:hover{

    background:#09562F;

}

.card{

    margin-top:35px;

    background:white;

    border-radius:12px;

    box-shadow:0px 4px 16px rgba(0,0,0,.08);

    padding:25px;

}

.card h3{

    color:#0D6B3F;

    margin-bottom:25px;

}

.gridVehiculo{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.gridVehiculo div{

    background:#FAFAFA;

    padding:15px;

    border-radius:8px;

}

.gridVehiculo span{

    display:block;

    color:#777;

    font-size:13px;

}

.gridVehiculo strong{

    font-size:17px;

}

table{

    width:100%;

    border-collapse:collapse;

}

thead{

    background:#0D6B3F;

    color:white;

}

th{

    padding:14px;

}

td{

    padding:14px;

    border-bottom:1px solid #EEE;

}