* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Arial, sans-serif;
}
	
body {
	background: linear-gradient(135deg, #66ea7e 0%, #76a24b 100%);
    min-height: 95vh;
	min-width: 90%;
    margin: 0;
    overflow-x: hidden;
	justify-content: center;
	align-items: center;
	padding: 5px;
}

.monitor-layout {
	display: grid;
	grid-template-columns: 29% 29% 42%;
	height: 99vh;
}

/* ================= IZQUIERDA ================= */

.monitor-turnos {
	background: #337300;
	padding: 1px;
	display: flex;
	flex-direction: column;
	max-height: 99vh;
}

.boxes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    flex: 1;
	max-height: 98vh;
}

.box-monitor {
    border: 2px solid #333;
    border-radius: 15px;
    padding: 5px;
    background: #111;
	max-height: 95vh;
}
.box-monitor1 {
    border: 2px solid #333;
    border-radius: 15px;
    padding: 5px;
    background: #111;
	max-height: 95vh;
}
.box-title {
    text-align: center;
    font-size: 2.6em;
    margin-bottom: 10px;
    color: #FFF;
	font-weight: bold;
}
.turno-actual {
    font-size: 3.5em;
    text-align: center;
    font-weight: bold;
    border: 3px solid #FFF;
    padding: 5px;
    border-radius: 7px;
    margin-bottom: 5px;
	color: #fff;
	background: #664;
}
.llamado-texto {
    font-size: 1.3em;
    margin-top: 5px;
	color: #fff;
}
.sin-turno {
    color: #ddd;
    border-color: #444;
}

.turno-item {
    font-size: 2.3em;
	color: #fff;
    border-bottom: 1px solid #333;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
}

/* ================= DERECHA ================= */

.monitor-multimedia {
    background: #111;
    display: flex;
    flex-direction: column;
}

.video-container {
    flex: 1;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.info-tiempo {
    background: #121;
    text-align: center;
    padding-top: 20px;
	padding-bottom: 20px;
	border-bottom: 4px solid #FFF;
}

.logo {
    background: #161;
    text-align: center;
    padding: 2%;
}

#hora {
    font-size: 2.4em;
    color: #FFF;
	font-weight: bold;
	text-transform: uppercase;
}

#clima {
    font-size: 2.6em;
    margin-top: 5px;
	color:#afa;
	font-weight: bold;
	text-transform: uppercase;
}