/* EasyChair style sheet
 * (c) 2008-2015 easychair.org
 * (c) 2020-2021 EasyChair Ltd
 */

/* the div that contains the whole date picker */
.dpicker {
  font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
}

.dpicker table {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: #505050;
  background-color: #fff;/*ece9d8;*/
  border: 1px solid #999;
}
/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpicker .days {
  background: #eee;
}

/* a table cell that holds a date number (either blank or 1-31) */
.dpicker .dateCell {
  border: 1px solid #ece9d8;
  background: #f3f3f3;
  text-align: center;
  width: 22px;
  height: 13px;
}

.dpicker .dateCell:hover {
  background-color: #fff;
  border: 1px solid #ece9d8;
  cursor: pointer;
  color: red;
  text-align: center;
}

/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpicker .selected {
  background-color: #cc1e2f;
  border: 1px solid #cc1e2f;
  text-align: center;
  color: #fff;
}

.dpicker .selected:hover {
  background-color: #f00;
  border: 1px solid #f00;
  cursor: pointer;
  color: #fff;
  text-align: center;
}

.dpicker .disabled{
  border: 1px solid #ece9d8;
  background: #f3f3f3;
  text-align: center;
  width: 22px;
  height: 13px;
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpicker .weekday {
  background-color: #e3e3e3;
  border: 1px solid #d3d3d3;
  color: #a00;
  font-weight: normal;
}
/* additional style information for the text that indicates the month and year */
.dpicker .top_bar {
  background: #ddd;
  border: 1px solid #ccc;
  font-size: 14px;
  color: #a00;
  font-weight: normal;
  padding: 2px 3px 4px 3px;
}

/* the forward/backward buttons at the top */
.dpicker .prev_next {
  font-size: 12px;
  color: #a00;
  background: none;
  font-weight: bold;
  padding: 0px 5px 0px 5px;
  border: hidden;
  cursor: pointer; 
}

.dpicker button.cancel {
    background: url('/images/cross_red.gif') no-repeat;
    height: 16px;
    width: 20px;
    border: 0px;
}

input.datebutton,
.formtable input.datebutton,
.formtable1 input.datebutton {
  height: 25px;
  min-width: 35px;
  background: orange url('/images/calendar_date_picker.png') left 7px top 3px no-repeat;
  border-radius: 6px;
  box-shadow: 3px 2px 2px 0px rgba(0, 0, 0, .2);
  margin: 0pt 8pt 0pt 0pt;
  vertical-align: bottom;
}
input.timebutton,
.formtable input.timebutton,
.formtable1 input.timebutton {
  height: 25px;
  min-width: 35px;
  background: #55bae7 url('/images/clock.png') left 8px top 2px no-repeat;
  border-radius: 6px;
  box-shadow: 3px 2px 2px 0px rgba(0, 0, 0, .2);
  margin: 0pt 0pt 0pt 0pt;
  vertical-align: bottom;
}
