/* CONTENEDOR BASICO */

.azc-box{

max-width:600px;
margin:auto;
padding:30px;
background:white;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);

}

.azc-box input{

width:100%;
padding:10px;
margin-bottom:10px;
border:1px solid #ddd;
border-radius:6px;

}

.azc-box button{

background:black;
color:white;
padding:10px 20px;
border:none;
cursor:pointer;
border-radius:6px;
transition:opacity .2s;

}

.azc-box button:hover{
opacity:0.9;
}


/* CONTENEDOR PRINCIPAL DEL COTIZADOR */

.az-cotizador{

max-width:900px;
margin:auto;
padding:40px;
background:white;
border-radius:12px;
box-shadow:0 10px 40px rgba(0,0,0,0.08);

}


/* TABLA DE SERVICIOS */

.tabla-servicios{

width:100%;
border-collapse:collapse;

}

.tabla-servicios th{

text-align:left;
border-bottom:2px solid #eee;
padding:12px;
font-size:14px;
color:#555;

}

.tabla-servicios td{

padding:10px;

}

.tabla-servicios input{

width:100%;
padding:8px;
border:1px solid #ddd;
border-radius:6px;

}


/* TOTAL */

.total-box{

text-align:right;
font-size:22px;
font-weight:bold;
margin-top:20px;

}


/* CONTENEDOR DEL BUSCADOR DE CLIENTES */

.az-cliente-box{

position:relative;
max-width:400px;
margin-bottom:20px;

}


/* DROPDOWN DE RESULTADOS */

#clientes_resultado{

position:absolute;
top:100%;
left:0;
right:0;

background:white;
border:1px solid #ddd;
border-top:none;

max-height:220px;
overflow-y:auto;

z-index:9999;

box-shadow:0 10px 30px rgba(0,0,0,0.08);

}


/* ITEM DE CLIENTE */

.cliente-item{

padding:10px 14px;
cursor:pointer;
border-bottom:1px solid #f0f0f0;
font-size:14px;

transition:background .2s;

}

.cliente-item:last-child{
border-bottom:none;
}

.cliente-item:hover{

background:#f5f7fa;

}


/* ESTILO DE TEXTO EN RESULTADOS */

.cliente-item strong{

display:block;
font-weight:600;

}

.cliente-item small{

display:block;
color:#777;
font-size:12px;

}


/* CAMPOS DE DATOS DEL CLIENTE */

.cliente-datos input{

margin-top:8px;

}


/* BOTON AGREGAR SERVICIO */

#agregar-servicio{

margin-top:15px;
background:#111;
color:white;
border-radius:6px;
padding:10px 16px;

}


/* BOTON GENERAR COTIZACION */

#generar_pdf{

margin-top:20px;
background:#000;
color:white;
padding:12px 20px;
font-weight:bold;
border-radius:6px;

}

.terminos-box{

background:#f9fafc;
border:1px solid #e6e6e6;
padding:20px;
border-radius:8px;
margin-top:30px;

}

.terminos-box ul{

margin-top:10px;
padding-left:18px;

}

.terminos-box li{

margin-bottom:8px;
font-size:14px;
line-height:1.5;

}

.terminos-box select{

margin-bottom:15px;
padding:8px;
border:1px solid #ddd;
border-radius:6px;

}

.az-stats{

display:flex;
gap:20px;
margin:20px 0;

}

.stat{

background:white;
padding:20px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
min-width:180px;

}

.stat h3{

margin:0;
font-size:14px;
color:#777;

}

.stat p{

font-size:24px;
margin:5px 0 0 0;
font-weight:bold;

}