.create-schedule-button {
    padding: 10px 20px;
    background-color: #20a8d8;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


.modal-button-1 {
    padding: 10px 20px;
    background-color: #20a8d8;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.modal-button-2 {
    padding: 10px 20px;
    background-color: #e57373;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.modal-button-3 {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.timepicker-button-left {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top: 1px solid #E0E0E0;
    border-left: 1px solid #E0E0E0;
    border-right: 0px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    background-color: #EEEEEE;
    color: #9E9E9E;
  }
  
  .timepicker-button-right {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: 1px solid #E0E0E0;
    border-left: 0px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    background-color: #EEEEEE;
    color: #9E9E9E;
  }
  


.static-menu .dropdown-menu{
    display: block;
    position: relative;
}

.static-modal .modal {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    z-index: 1;
    display: block;
}

.tooltip-static .tooltip {
    position: relative;
    display: inline-block;
    margin: 5px 10px;
}

.static-popover {
    height: 200px;
}

.static-popover .popover {
    position: relative;
    left: 0;
    right: 0;
}

.show-grid {
    margin-bottom: 15px;
}

.show-grid div {
    border: 1px solid #df691a;
    padding: 8px;
}

.page-header-contained {
    border: 1px solid #df691a;
    padding: 15px 30px;
}

.checkbox input {
    margin: 10px
}

.icon-header {
    font-size: 20px
}

.spinner {
  width: 100px;
}
.spinner input {
  text-align: right;
}
.input-group-btn-vertical {
  position: relative;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
  display: table-cell;
}
.input-group-btn-vertical > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
  padding: 8px;
  margin-left: -1px;
  position: relative;
  border-radius: 0;
}
.input-group-btn-vertical > .btn:first-child {
  border-top-right-radius: 4px;
}
.input-group-btn-vertical > .btn:last-child {
  margin-top: -2px;
  border-bottom-right-radius: 4px;
}
.input-group-btn-vertical i{
  position: absolute;
  top: 0;
  left: 4px;
}
.filter-select {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10;
    width: 100%;
}
.datepicker-wrapper {
    width: 100%;
}

/* HACK:
    Reagent forms uses glyphicons while the rest
    of the app uses font awesome. This css is copied from
    font awesome to make the datepicker render right. */
.glyphicon-calendar {
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-variant-east-asian: normal;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1;
    font-family: FontAwesome;
}
.glyphicon-calendar:before {
    content: "\f073";
}

.label-filter {
    padding-top: 18px;
}

.input-filter {
    padding-top: 9px;
}

.schedule-info {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    max-width: 600px;
    margin: auto;
}
  
.schedule-section, .refund-section {
    margin: 10px;
}
  
.section-title {
    font-size: 1.2em;
    color: #333;
    border-bottom: 2px solid #ccc;
    margin-bottom: 10px;
}

.field {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.label {
    font-weight: bold;
    color: #555;
}

.value {
    color: #222;
}

.refund-section {
    padding: 15px;
    border: 1px solid #d4edda;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.refund-section .section-title {
    color: #155724;
}
.actions-container {
    display: flex;
    justify-content: right;
    align-items: right;
    padding: 20px;
}
  

.responsive-list-schedule {
  flex-direction: row !important;
  justify-content: center !important;
}

@media (max-width: 768px) {
  .responsive-list-schedule {
    flex-direction: column !important;
  }
  .sidebar-responsive {
    width: 100% !important;
  }
  .schedule-view-responsive {
    margin-top: 25px !important;
  }
}

@media (max-width: 375px) {
    .create-schedule-button {
        font-size: 10px;
    }
}

