﻿/* --- CUSTOM --- */
/* --------------------------------------------------------- LOGIN ------------------------------------------------------------ */
.login-container {
  padding: 1rem;
  background: linear-gradient(135deg, #BDEDFF 0%, #00A2FF 100%);
  min-height: 100vh;
  width: 100%;
  transition: margin-left 0.3s ease-in-out, width 0.3s ease-in-out;
}

.begin-container {
  background: #C7E4FF;
  padding: 30px;
  border: 2px solid #333;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  margin-top: 10%;
}

.login-logo {
  width: 50%;
  height: 40%;
}

.login-title {
  flex: 2 1;
  font-size: 32px;
  white-space: nowrap;
  font-weight: bold;
}

.login-active {
  background-color: navajowhite;
  border: 3px solid black;
}

.form-label-title {
  min-width: 115px;
  max-width: 115px;
  margin-bottom: 0;
  font-weight: bold;
  font-size: 20px;
  text-align: left;
}

.hidden-checkbox {
  display: none;
}

.toggle-switch:checked ~ .hidden-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

/* ---------------------------------------------------------LAYOUT----------------------------------------------------------- */
.layout-container {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 175px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #F8F8F8;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: transform 0.3s ease;
}

.sidebar.hidden {
  transform: translateX(-100%);
}

.hamburger {
  display: none;
  position: absolute;
  top: 20px;
  left: 25px;
  z-index: 1000;
  background: #00008B;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.image-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 175px;
  height: 90px;
}

.menu-container {
  flex: 1;
  overflow-y: auto;
}

.image-menu-left {
  height: 40px;
  width: 40px;
  border-radius: 30%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.menu-bottom {
  margin-bottom: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.main-content {
  padding: 1rem;
  background-color: #E9E9F2;
  margin-left: 175px;
  width: calc(100% - 175px);
  transition: margin-left 0.3s ease-in-out, width 0.3s ease-in-out;
}

.main-content.expanded {
  margin-left: 0;
  width: 100%;
}

/* ----------------------------------------------------------MAIN------------------------------------------------------------ */
.main-container {
  margin-right: 40px;
  margin-left: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.main-container-title {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

/* ---------------------------------------------------------HEADER----------------------------------------------------------- */
/* TITLES */
.title-alone {
  margin-top: 15px;
  margin-bottom: 33px;
  margin-left: 0px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.title-menu {
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.title-description {
  margin-bottom: 25px;
  font-size: 20px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

/* MENU BUTTONS */
.nav-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5px;
  overflow-x: scroll;
}

.nav-button {
  padding: 0.5rem 1.25rem;
  font-size: 21px;
  font-weight: 500;
  background: none;
  border: none;
  border-radius: 25%;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
  color: #000000;
  white-space: nowrap;
}

.nav-button:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #99B4F0 0%, #174199 100%);
  cursor: pointer;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.nav-button.active {
  color: #2563eb;
  background: white;
  pointer-events: none;
  text-decoration-line: underline;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.nav-button:focus {
  outline: none;
}

/* SEPARATORS */
.separator-menu {
  border-width: 0;
  margin-top: 0px;
}

/* ------ RESPONSIVE ------ */
/* -------- LEVEL 1 ------- */
@media (max-width: 1450px) {
  .sidebar {
    width: 100%;
    max-width: 175px;
    transform: translateX(-100%);
  }
  .sidebar.visible {
    transform: translateX(0);
  }
  .main-content {
    margin-left: 0;
    width: 100%;
  }
  .hamburger {
    display: block;
  }
  .overlay.visible {
    display: block;
  }
  .title-alone {
    margin-left: 40px;
  }
  .title-menu {
    margin-left: 40px;
  }
  .main-container {
    margin-right: 20px;
    margin-left: 20px;
  }
  .login-title {
    font-size: 20px;
    margin-top: 0px;
  }
}
/* -------- LEVEL 2 ------- */
/* -------- LEVEL 3 ------- */
/* -------- LEVEL 4 ------- */
@media (max-width: 768px) {
  .login-title {
    font-size: 20px;
    margin-top: 0px;
  }
  .form-label-title {
    font-size: 14px;
  }
}
/* -------- LEVEL 5 ------- */
@media (max-width: 576px) {
  .sidebar {
    width: 100%;
  }
}
/* -------------------------------------------------------------- CONTAINER ----------------------------------------------------------- */
.content-container {
  background: white;
  padding: 20px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

.form-container {
  background: white;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

.title-container {
  padding: 0px 0px 0px 0px;
}

/* ---------------------------------------------------------------- INICIO -------------------------------------------------------------- */
.chronometer-display {
  margin: 0 0;
}

.time-display {
  font-size: 3rem;
  font-family: monospace;
  color: #333;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  display: inline-block;
  min-width: 160px;
  margin-bottom: 20px;
}

.info-label {
  max-width: 230px;
  min-width: 230px;
  color: #333;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.controls {
  margin: 30px 0;
}

.title-tt {
  font-size: 24px;
  font-weight: bold;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  margin-bottom: 0px;
}

.title-dc {
  font-size: 16px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

/* -------------------------------------------------------------- ASISTENCIA ----------------------------------------------------------- */
.asistencia-container {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 10vh;
  max-height: 52vh;
  margin-top: 2vh;
  padding-right: 15px;
  margin-right: -10px;
  gap: 1vh;
}

.aligned {
  display: flex;
  gap: 20px;
}

.user-info-btn {
  height: 60px;
  width: 60px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-info-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.info-line {
  margin-top: 10px;
}

/* -------------------------------------------------------------- TOOLTIPS ----------------------------------------------------------- */
.tooltiptext {
  height: 30px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  z-index: 1;
  overflow: auto;
}

.asist-label {
  display: flex;
  align-items: center;
  border-radius: 10px;
  color: black;
  font-size: 20px;
  text-decoration: none;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.asist-label:hover {
  background-color: #BBE1FC;
}

.info-panel {
  background-color: lightskyblue;
  color: #333;
  border: 2px solid #333;
  border-radius: 20%;
  max-width: 150px;
  padding: 10px 10px 0px 10px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

/* -------------------------------------------------------------- BUTTONS ----------------------------------------------------------- */
.btn-menu {
  background-color: rgba(233, 233, 242, 0.51);
  color: #333;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  padding: 10px 10px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-menu-ext {
  justify-content: space-between;
}

.btn-menu:hover .btn-blank {
  color: white;
}

.btn-menu:hover:not(:disabled) {
  background-color: #174199; /* Dark blue */
  color: white;
  border-color: #174199;
}

.btn-menu:disabled {
  background-color: #CCCCCC; /* Grey */
  color: #666;
  border-color: #999;
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-menu:active:not(:disabled) {
  transform: scale(0.98);
}

.btn-menu:active {
  background-color: #174199; /* Dark blue */
  color: white;
  border-color: #174199;
}

.btn-confirm {
  background-color: white;
  color: #333;
  border: 2px solid #333;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-confirm:hover:not(:disabled) {
  background-color: #174199; /* Dark blue */
  color: white;
  border-color: #174199;
}

.btn-confirm:disabled {
  background-color: #CCCCCC; /* Grey */
  color: #666;
  border-color: #999;
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-confirm:active:not(:disabled) {
  transform: scale(0.98);
}

.number-circle {
  position: relative;
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  margin-left: 10px;
  flex: 2;
  width: clamp(20px, 15vw, 40px);
  height: clamp(20px, 15vw, 40px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.shadow-icon {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  height: 30px;
  width: 30px;
}

/* ----------------------------------------------------------------- TOGGLES ------------------------------------------------------------ */
.toggle-label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #808080;
  border-radius: 34px;
  transition: 0.4s;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.toggle-label:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

/* TOGGLE SIN CHECKBOXFOR */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 26px;
}

.toggle-switch input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-switch input:checked + .toggle-label {
  background-color: #2196F3;
}

.toggle-switch input:focus + .toggle-label {
  box-shadow: 0 0 1px #2196F3;
}

.toggle-switch input:checked + .toggle-label:before {
  transform: translateX(20px);
}

/* Disabled state */
.toggle-switch input:disabled + .toggle-label {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ----------------------------------------------------------------- FORMS -------------------------------------------------------------- */
.form-aligned {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.form-label {
  margin-bottom: 0;
  font-weight: bold;
  font-size: 16px;
  text-align: left;
}

.fl-sm {
  min-width: 40px;
  max-width: 40px;
}

.fl-md {
  min-width: 75px;
  max-width: 75px;
}

.fl-lg {
  min-width: 110px;
  max-width: 110px;
}

.fl-xl {
  min-width: 130px;
  max-width: 130px;
}

.fl-xxl {
  min-width: 170px;
  max-width: 170px;
}

.input-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fc-custom {
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.fc-custom:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.modulo-display {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: #333;
  border-radius: 5%;
  padding: 10px 10px 10px 10px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.description-dc {
  font-size: 16px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

/* SHAPES */
.form-shapes {
  display: flex;
  align-items: center;
  gap: 15px;
}

.form-info {
  padding: 15px;
  background-color: #f8f9fa;
  border-left: 4px solid #0066cc;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.circle {
  height: 35px;
  width: 35px;
  background-color: #99BEFF;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SIDE-IMAGES */
.img-btn {
  background-size: 30px 30px;
  background-repeat: no-repeat;
  padding-left: 45px;
}

.img-btn-sm {
  background-size: 30px 30px !important;
  background-repeat: no-repeat !important;
  padding-left: 33px !important;
}

.img-btn-save {
  background-image: url(/Images/guardar.svg);
  background-position: 10px 2px;
}

.img-btn-cal {
  background-image: url(/Images/AsignarCalendario.svg);
  background-position: 10px 5px;
}

.img-btn-pdf {
  background-image: url(/Images/pdf.svg);
  background-position: 10px 7px;
}

.img-btn-excel {
  background-image: url(/Images/excel.svg);
  background-position: 10px 7px;
}

.img-btn-upload {
  background-image: url(/Images/AsignarCalendario.svg);
  background-position: 10px 5px;
}

.img-btn-fil {
  background-image: url(/Images/filter.svg);
  background-position: 10px 5px;
}

.img-btn-add {
  background-image: url(/Images/anadir.svg);
  background-position: 10px 5px;
}

.img-btn-edit {
  background-image: url(/Images/edit.svg);
  background-position: 10px 5px;
}

.img-btn-del {
  background-image: url(/Images/delete.svg);
  background-position: 10px 5px;
}

.img-btn-conf {
  background-image: url(/Images/confirmar.png);
  background-position: 1px 2px !important;
}

/* IMAGES */
.image-border {
  background-color: black;
  width: 210px;
  height: 210px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.image-border-long {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-long {
  flex: 1 1;
  max-width: 680px;
  height: 70px;
  border: 2px solid black;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

/* WINDOWS */
.title-window {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}

/* SEPARATORS */
.separator-title {
  height: 2px;
  border-width: 0;
  color: black;
  background-color: black;
  margin-top: 0px;
  margin-bottom: 20px;
}

/* ------ RESPONSIVE ------ */
/* -------- LEVEL 1 ------- */
/* -------- LEVEL 2 ------- */
@media (max-width: 1250px) {
  .btn-menu {
    font-size: 10px;
    padding: 5px 10px;
  }
  .number-circle {
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    font-size: 12px;
    margin-left: 5px;
  }
  .info-line {
    font-size: 12px;
  }
  .info-panel {
    font-size: 10px;
  }
}
/* -------- LEVEL 3 ------- */
@media (max-width: 950px) {
  .btn-menu {
    font-size: 8px;
    padding: 5px 10px;
  }
  .number-circle {
    font-size: 10px;
  }
  .info-line {
    font-size: 9px;
  }
  .form-label {
    font-size: 14px;
  }
  .fl-xl {
    min-width: 100px;
    max-width: 100px;
  }
  .fl-xxl {
    min-width: 100px;
    max-width: 100px;
  }
  .info-panel {
    font-size: 12px;
  }
}
/* -------- LEVEL 4 ------- */
@media (max-width: 768px) {
  .form-aligned {
    flex-direction: column;
    align-items: stretch;
  }
  .form-container {
    padding: 20px;
  }
  .begin-container {
    padding: 20px;
  }
  .content-container {
    padding: 20px;
  }
  .btn-menu {
    font-size: 18px;
    padding: 10px 10px;
  }
  .number-circle {
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    font-size: 18px;
    margin-left: 10px;
  }
  .info-line {
    font-size: 16px;
  }
  .form-label {
    font-size: 16px;
  }
  .fl-sm {
    min-width: 0;
    max-width: 500px;
  }
  .fl-md {
    min-width: 0;
    max-width: 500px;
  }
  .fl-lg {
    min-width: 0;
    max-width: 500px;
  }
  .fl-xl {
    min-width: 0;
    max-width: 500px;
  }
  .fl-xxl {
    min-width: 0;
    max-width: 500px;
  }
  .description-dc {
    font-size: 12px;
  }
}
/* -------- LEVEL 5 ------- */
@media (max-width: 576px) {
  .form-container {
    padding: 15px;
  }
  .begin-container {
    padding: 15px;
  }
  .content-container {
    padding: 15px;
  }
  .btn-menu {
    font-size: 10px;
    padding: 10px 10px;
  }
  .number-circle {
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    font-size: 12px;
    margin-left: 5px;
  }
  .info-line {
    font-size: 12px;
  }
  .image-long {
    max-width: 275px;
  }
  .title-tt {
    font-size: 22px;
  }
}
/* --- TELERIK --- */
/* --- SIDEBAR --- */
.k-menu-link {
  padding: 1em 0.8em !important;
  max-width: 170px;
  justify-content: center;
}

.k-item {
  max-width: 170px;
}

.k-item :hover {
  background: #BBE1FC !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.k-state-highlight {
  background: #BBE1FC !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

/* --- GRIDS --- */
.k-widget {
  border-style: none !important;
}

.k-button {
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.k-column-title {
  font-weight: bold;
}

.k-dropzone {
  justify-content: center !important;
}

.k-upload-button {
  margin-right: 0px !important;
}
