.simple-calendar {
    table {
      -webkit-border-horizontal-spacing: 0px;
      -webkit-border-vertical-spacing: 0px;
      background-color: rgba(0, 0, 0, 0);
      border: 1px solid rgb(221, 221, 221);
      border-collapse: collapse;
      box-sizing: border-box;
      max-width: 100%;
      width: 100%;
    }
  
    tr {
      border-collapse: collapse;
    }
  
    th {
      padding: 6px;
      border-bottom: 2px solid rgb(221, 221, 221);
      border-collapse: collapse;
      border-left: 1px solid rgb(221, 221, 221);
      border-right: 1px solid rgb(221, 221, 221);
      border-top: 0px none rgb(51, 51, 51);
      box-sizing: border-box;
      text-align: left;
    }
  
    td {
      padding: 6px;
      vertical-align: top;
      /* width: 12%; */
  
      border: 1px solid #ddd;
      border-top-color: rgb(221, 221, 221);
      border-top-style: solid;
      border-top-width: 1px;
      border-right-color: rgb(221, 221, 221);
      border-right-style: solid;
      border-right-width: 1px;
      border-bottom-color: rgb(221, 221, 221);
      border-bottom-style: solid;
      border-bottom-width: 1px;
      border-left-color: rgb(221, 221, 221);
      border-left-style: solid;
      border-left-width: 1px;
    }
  
    .calendar-heading nav {
      display: inline-block;
    }
  
    .day {
      height: 30px;
    }
  
    .wday-0 {}
    .wday-1 {}
    .wday-2 {}
    .wday-3 {}
    .wday-4 {}
    .wday-5 {}
    .wday-6 {}
  
    .today {
      background: #FFFFC0
    }
  
    .past {}
    .future {}
  
    .start-date {}
  
    .prev-month {
      background: #DDD;
    }
    .next-month {
      background: #DDD;
    }
    .current-month {}
  
    .has-events {}
  }
  
.login-logo {
  max-width: 480px;
}

.login-description {
  font-size: 1rem;
  color: #6b7280;
  max-width: 480px;
}

.login-separator {
  position: absolute;
  right: 0;
  top: 1%;
  bottom: 1%;
  width: 1px;
  background-color: #e5e7eb;
}

/* .card-header {
  font-size: clamp(0.5rem, 2vw, 1.2rem);
  font-weight: 600;
  padding: clamp(3px, 0.8vw, 10px) clamp(6px, 2vw, 20px);
} */

#loading-message{ 
    display: none; 
    position: fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background:rgba(255,255,255,0.8); 
    z-index:1050;
  }
  .loading-message{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    background: rgba(14, 66, 210, 0.7); 
    color: white; 
    padding: 15px; 
    border-radius: 5px; 
    font-size: 28px;
  }

.image {
    cursor: pointer;
}

.image:hover {
    opacity: 0.8;
}

#image-viewer {
    display: none;
}

#image-viewer div {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

input.form-control {
  color: #4d4d4d !important;
}
textarea.form-control {
  color: black !important;
}
input.form-control::placeholder {
  color: #4d4d4d !important;
  opacity: 1;
}

.sticky-top {
    z-index: 800;
}

#image-viewer div img {
    display: block;	
    max-width: 80%;
}

.nav-link {
    color: black !important;
  }

  .group-button {
    font-size: clamp(0.5rem, 2vw, 1.2rem);
    padding: clamp(3px, 0.8vw, 10px) clamp(6px, 2vw, 20px);
  }

  .select-button {
    font-size: clamp(0.5rem, 2vw, 1rem);
    padding: 2px 2px;
  }

  .group-button:hover {
    background-color: #f3f3f3;
    color: black;
  }

  .group-button.active {
    background-color: #007bff;
    color: white;
    border-color: black;
  } 

/* .dropdown {
  z-index: 1050;
} */

#close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 50px;
    cursor: pointer;
}

#close:hover, #close:focus {
    opacity: 0.6;
}

.xsmall {
  font-size: 0.90em;
}

.slim-select {
  opacity: 0;
  transition: opacity 0.2s;
  font-size: clamp(0.2rem, 2vw, 0.8rem);
}
.slim-select.ss-ready {
  opacity: 1;
}

.no-caret::after {
  display: none;
}


.action-buttons {
  display: flex;
}

.action-buttons .slot {
  width: 100px;
  display: flex;
}

.action-buttons .slot .btn {
  width: 100%;
  border-radius: 0;
}

.action-buttons .slot:first-child .btn {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.action-buttons .slot:last-child .btn {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}


/* =========================
   PICKER
========================= */
.picker-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1040;
}

.picker-modal {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 96vw);
  max-height: 85vh;

  border-radius: 10px;

  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1050;

  font-size: 14px;
}

.picker-header {
  position: relative;
  padding: 20px 48px 20px 18px;

  background: #f8f9fa;
  border-bottom: 1px solid #dcdfe3; 
}

.picker-header h5 {
  margin: 0;
  font-size: 15px;
}

.picker-close {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);

  font-size: 16px;
}

.picker-search {
  padding: 10px 18px;
  background: #ffffff;
}

.picker-scroll {
  flex: 1;
  overflow-y: auto;
  background: #ffffff;
}

.picker-scroll table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.picker-scroll thead th {
  position: sticky;
  top: 0;
  background: #f1f3f5; 
  z-index: 1;
}

.picker-scroll tbody tr {
  cursor: pointer;
}


.weight-display {
    background-color: var(--bs-dark);
    border: 2px solid;
    border-radius: 0.5rem;
    padding: 0.5rem;
    text-align: center;
    font-weight: bold;
    font-size: 2.5rem;
    font-family: var(--bs-font-monospace);
    letter-spacing: 0.15em;
    user-select: none;
  }

  .weight-ok {
    color: var(--bs-warning);
    border-color: var(--bs-warning);
  }

  .weight-error {
    color: var(--bs-danger);
    border-color: var(--bs-danger);
  }

  @media (max-width: 760px) {
    .weight-display {
      font-size: 1.2rem;
    }  
    .col-form-label {
      font-size: 0.55rem;
    }
  }
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
*= require datetimepicker

*= require font-awesome

