/*
.mic_hidden, .cam_hidden {
  opacity: 0.25 !important;
}
.mic_visible, .cam_visible {
  opacity: 1 !important;
}
*/

.meet_inside.mic_allowed, 
.meet_inside.cam_allowed, 
.meet_inside.present_allowed, 
.meet_inside.chat_allowed, 
.meet_inside.hangup_allowed {
  border: 5px solid green !important;
}
.meet_inside.mic_disabled, 
.meet_inside.cam_disabled, 
.meet_inside.present_disabled, 
.meet_inside.chat_disabled, 
.meet_inside.hangup_disabled {
  border: 5px solid grey !important;
}
.meet_inside.cam_active {
  border: 5px solid red !important;
}

/*
.present_allowed {
  opacity: 1 !important;
  display: auto;
}
.present_disabled {
  opacity: 0 !important;
  display: none;
}
*/

/* boton de presentar necesita css de posición del icono adicional */
.meet_inside.present_allowed, 
.meet_inside.present_disabled {
  padding-top: 4px !important;
  padding-left: 3px !important;
}

.meet_inside.chat_allowed, 
.meet_inside.chat_disabled {
  border-radius: 50%;
  height: 40px !important;
  width: 40px !important;
  margin-left: 5px;
  margin-right: 5px;
  padding-top: 4px !important;
  padding-left: 3px !important;  
}

.meet_inside.hangup_allowed, 
.meet_inside.hangup_disabled {
  padding-top: 4px !important;
  padding-left: 11px !important;  
}


div#secured {
  display: none; /* lo mostramos al detectar que aplicamos seguridad ya dentro de la sesión */

  position: absolute;
  left: 12px;
  top: 12px;
  /*border: 5px solid #006ca0;
  border-radius: 15px;*/
  /*padding: 10px;*/
  /*height: 50px;
  width: 150px;*/
  z-index: 1000000000000;
  color: white;
  font-size: 14px;
  font-size: x-large;
  opacity: .8;
}

#debug_meet {
  display: none; /* lo mostramos al detectar que aplicamos seguridad ya dentro de la sesión */

  position: fixed;
  z-index: 10000000000000000000;
  font-family: Courier;
  font-weight: bold;
  top: 50px;
  left: 10px;
  border:1px solid white;
  border-radius: 10px;
  padding: 10px;
  background-color:
  #111;
  opacity: .9;
  color: white;
  width: 80ch;
  min-height: 10em;
  max-height: 30em;
  overflow-y: scroll;
}

#debug_meet div {
  padding: 4px;
  border: 1px solid darkgray;
  margin-bottom: 2px;
  border-radius: 10px;
}



@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}
.blink {
	text-decoration: blink;
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
}

/* Presentar sin permiso: mismo fondo que los demás bloqueados */
.meet_inside.present_disabled {
  background-color: #681c1c !important;  
}

/* fondo neutro cuando está permitido */
.meet_inside.present_allowed {
  background-color: transparent !important;
}

/* ========================================= */
/* CONTROL GLOBAL DE CÁMARA (sin Meet Inside) */
/* ========================================= */

/* Cámara permitida: borde verde */
.cam_global_allowed {
  border: 5px solid green !important;
  border-radius: 50% !important;
  box-sizing: border-box;
}

/* Cámara bloqueada: borde rojo */
.cam_global_disabled {
  border: 5px solid red !important;
  border-radius: 50% !important;
  box-sizing: border-box;
  opacity: 0.7;
}

/* Fondo para cámara bloqueada (igual que present_disabled) */
.cam_global_disabled {
  background-color: #681c1c !important;
}