.label-text {
    font-size: 13px;
}

.select-box {
    font-size: 13px;
}

.sidebar {
    min-height: 100vh;
    color: #fff;
    padding-top: 1rem;
}
.sidebar a {
    color: #ffffff;
}
.sidebar a:hover {
    background-color: #495057;
}
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1020; /* Higher than body content */
    background-color: #0d6efd; /* Bootstrap primary */
    color: white;
    padding: 10px;
}
::placeholder {
    color: #aaa;   /* light grey shade */
    opacity: 1;    /* make sure it's visible in all browsers */
}

input[type="number"] {
  appearance: textfield;         /* Standard property */
  -webkit-appearance: none;      /* For Chrome, Safari, newer Edge */
  -moz-appearance: textfield;    /* For Firefox */
  margin: 0;                     /* Optional: removes default margin in some browsers */
}

/* Remove spinners in Chrome, Safari, newer Edge */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

legend {
    display: table;
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
  }

  .select2-container {
    max-width: 100% !important;
    box-sizing: border-box;
}

#model_fmonth {
    display: block;
    text-align: left;
}

#model_chlnno {
    display: block;
    text-align: left;
}

#model_grain {
    display: block;
    text-align: left;
}

.invalid-pno {
    color: #cc0033; /* deep red for errors */
    font-weight: bold;
    font-size: 11px;
    margin-top: 5px;
    display: block; /* so it appears below input */
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px rgba(250,250,250,0.3);
}
input.is-invalid {
    border: 2px solid #cc0033;
    background-color: #fce4e4;
    outline: none;
}
.highlight-day {
    background: #ffe066 !important;
    color: #212529 !important;
    border-radius: 50% !important;
    font-weight: bold;
}


