/*
 * Team Request
 */
.surveillance-col {
  cursor: pointer;
  padding-left: 4px;
}

.surveillance-col1 {
  width: 30px;
  text-align: center;
}

.surveillance-row {
  height: 40px;
  font-size: 12px;
  border-bottom: 1px solid #999;
}

.surveillance-active {
  font-weight: bold;
  background-color: #eee;
}

.surveillance-details {
  height: 420px;
  margin-top: 10px;
  margin-bottom: 10px;
  max-height: 420px;
  overflow-y: auto;
}

.zoom-div {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 10%;
  margin-top: 15px;
  margin-right: 15px;
}

.vms-button-container{
  display:flex;
  flex-direction:column;   /* uno sotto laltro */
  gap:10px;
  padding:10px;
}

.vms-btn-fixed{
  min-width:120px;
  height:40px;
  text-align:center;
  border:none;
  font-size:12px;
  font-weight:bold;
  border-radius:4px;
  transition:all .2s ease-in-out;
  background:#fff;
  box-shadow:2px 2px 6px rgba(0,0,0,.2);
}

.vms-btn-fixed:hover{
  transform:translateY(-1px);
  box-shadow:2px 2px 6px rgba(0,0,0,.8);
}

.vms-btn-fixed:active{
  transform:translateY(1px);
  box-shadow:2px 2px 6px rgba(0,0,0,.2);
}

/* **** Bottone selezionato **** */
.vms-primary{
  background:#0d6efd;   /* bootstrap primary */
  color:#fff;
  box-shadow:2px 2px 6px rgba(13,110,253,.6);
}
