body {

    font-family: Arial, sans-serif;

    background:#f4f4f4;

    margin:0;

    padding:40px;

    max-width:1400px;

    margin-left:auto;

    margin-right:auto;

}

h1 {
    text-align: center;
    color: #333333;
}

h2 {
    text-align: center;
    color: #666666;
    margin-bottom: 30px;
}

hr {
    margin-bottom: 30px;
}

button{

    display:block;

    min-width:250px;

    width:auto;

    margin:15px auto;

    padding:16px 30px;

    font-size:20px;

    font-weight:bold;

    cursor:pointer;

    border:none;

    border-radius:10px;

    background:#2d6cdf;

    color:white;

    transition:.2s;

}

button:hover{

    background:#1d4fa8;

    transform:scale(1.03);

}
.tabla-ver-cliente{

    width: 100%;
    max-width: 900px;

    border-collapse: collapse;

    margin-top: 20px;

    background: #ffffff;

}

.tabla-ver-cliente th{

    width: 240px;

    text-align: left;

    padding: 12px;

    background: #f3f3f3;

    border: 1px solid #dcdcdc;

}

.tabla-ver-cliente td{

    padding: 12px;

    border: 1px solid #dcdcdc;

}

.tabla-ver-cliente tr:nth-child(even){

    background: #fafafa;

}
/* ===========================
   MENU CLIENTE
=========================== */

#nombreComercio{

    font-size:48px;

    font-weight:bold;

    text-align:center;

    color:#222;

    margin-top:40px;

    margin-bottom:50px;

}

#listaVideos{

    width:100%;

    max-width:900px;

    margin:50px auto;

    display:flex;

    flex-direction:column;

    gap:20px;

}

#listaVideos a{

    display:block;

    width:100%;

    box-sizing:border-box;

    text-decoration:none;

    font-size:30px;

    font-weight:bold;

    color:white;

    background:#2d6cdf;

    padding:24px;

    margin-bottom:20px;

    border-radius:12px;

    text-align:center;

    transition:0.2s;

}

#listaVideos a:hover{

    background:#1d4fa8;

    transform:scale(1.02);

    box-shadow:0 8px 20px rgba(0,0,0,.25);

}
/* ===========================
   REPRODUCTOR
=========================== */

#reproductor{

    max-width:1400px;

    margin:20px auto;

    text-align:center;

}

#reproductor h2{

    font-size:42px;

    color:#222;

    margin-bottom:10px;

}

#reproductor h3{

    font-size:30px;

    color:#555;

    margin-bottom:25px;

}

#reproductor iframe{

    display:block;

    width:100%;

    max-width:1280px;

    aspect-ratio:16 / 9;

    height:auto;

    margin:30px auto;

    border:none;

    border-radius:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

}
/* ===========================
   BUSCADOR DE CLIENTES
=========================== */

#buscadorCliente{

    width:100%;
    max-width:700px;

    padding:14px;

    font-size:18px;

    border:1px solid #cccccc;

    border-radius:8px;

    box-sizing:border-box;

}

#listaClientes{

    width:100%;
    max-width:700px;

    background:#ffffff;

    border:1px solid #cccccc;

    border-top:none;

    border-radius:0 0 8px 8px;

    max-height:250px;

    overflow-y:auto;

}

.item-cliente{

    padding:12px;

    cursor:pointer;

    border-bottom:1px solid #eeeeee;

}

.item-cliente:hover{

    background:#2d6cdf;

    color:white;

}