
.calendar-container {
    background: #fff;
    width: 800px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.calendar-container header {
    display: flex;
    align-items: left;
    padding: 25px 30px 10px;
    justify-content: space-between;
}

header .calendar-navigation {
    display: flex;
}

header .calendar-navigation span {
    height: 38px;
    width: 38px;
    margin: 0 1px;
    cursor: pointer;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    user-select: none;
    color: #aeabab;
    font-size: 1.9rem;
}

.calendar-navigation span:last-child {
    margin-right: -10px;
}

header .calendar-navigation span:hover {
    background: #f2f2f2;
}

header .calendar-current-date {
    font-weight: 500;
    font-size: 1.45rem;
}

.calendar-body {
    padding: 20px;
}

.calendar-body ul {
    list-style: none;
    flex-wrap: wrap;
    display: flex;
    text-align: left;
}

.calendar-body .calendar-dates {
    margin-bottom: 20px;
}

.calendar-body li {
    width: calc(100% / 7);
    /* font-size: 1.07rem; */
    color: #414141;
}

.calendar-body .calendar-weekdays li {
    cursor: default;
    font-weight: 500;
    width: 100px;
}

.calendar-body .calendar-dates li {
    margin-top: 30px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border: 1px solid;
    padding-top:20px;
    padding-bottom:20px;
    padding-left:10px;
    padding-right:10px;
}

.calendar-dates li.inactive {
    color: #aaa;
}

.calendar-dates li.active {
    color: #fff;
}

.calendar-dates li::before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.calendar-dates li.active::before {
    background: #6332c5;
}

/*
.calendar-dates li:not(.active):hover::before {
    background: #e4e1e1;
}
*/

ul {
    list-style-type: none;
}

.sitting-date {
    font-weight: bold;
    padding: 1rem;
    color: blue;
}

.location {
    margin-left: 10px;
    padding: .5rem;
    color: black;
}

.courtroom {
    margin-left: 20px;
    padding: .5rem;
}


/*
.time {
    margin-left: 30px;
    padding: .5rem;
}
*/

.case {
    margin-left: 40px;
    font-weight: normal;
}

.calendar-body .calendar-dates .cal-location {
    font-size: .75rem !important;
    text-align: left !important;
    color: darkblue !important;
    font-weight: bold !important;
    margin-top: 5px;
    background-color: aqua;
    padding-left: 5px;
}

.cal-address-block {
    line-height: 1.25rem;
}

.day-hearing-time {
    padding-top: 20px;
    
}

.day-courtroom {
    padding-top: 5px;
}

.day-panel {
    padding-top: 3px;
}


.one-day-case-number {
    font-size: 1rem;
    padding-top:15px;
    padding-left:10px;
    color:blue;
    font-weight: bold;
}

.one-day-case-synopsis {
    font-size: .90rem;
    padding-left: 10px;
    padding-top: 3px;
    font-style: italic;
}

.one-day-detail-line {
    font-size: .90rem;
    font-weight: bold;
    padding-top: 5px;
    padding-left: 10px;
}

.day-cal-time-heading {
    /*
    padding-top:15px;
    padding-bottom: 3px;
    */
}
.day-cal-sitting-info {
    /* padding-top:5px; */
}

table {
    border-collapse: collapse;
    width: 100%;
}

/*
table.outer-search-results {
    border-collapse: collapse;
    width: 100%;
}
table.inner-search-results {
    border-collapse: collapse;
    width: 100%;
}
    */

th {
    text-align:left;
    padding-left: 10px;
}

th.num, td.num {
    width: 10%;
}

th.title, td.title {
    width: 60%;
    padding-right: 50px;
}

th.origin, td.origin {
    width: 10%;
}

th.type, td.type {
    width:10%;
}

th.time, td.time {
    width: 10%;
}


tr.header-row {
    background-color: #FBECD7;
    border-bottom: 1px solid #C1A68B;
    
}

tr.header-row th {
    padding: 5px;
}

td {
    
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1.5rem;
    font-size:medium;
  }

  /* search results css */

table.outer-search-results td {
    padding: 2px;
    line-height: 1.5rem;
    font-size:medium;
}

table.inner-search-results td {
    word-wrap:break-word;
}

td.search-num-title {
    font-weight:bold;
    padding-top: 5px !important;
}



th.search-date, td.search-date-2 {
    width: 15%;
}

th.search-location, td.search-location-2 {
    width:40%;

}

th.search-courtroom, td.search-courtroom-2 {
    width: 35%;

}

th.search-time, td.search-time-2 {
    width: 10%;

}

div.search-results-container, div.cal-day-page-container {
    /* width: 900px; */
    margin: auto;   
}

div.search-results-message {
    padding-top:10px;
    padding-bottom: 10px;
}

tr.data-row {
    vertical-align: top;
}

tr.data-row {
    border-bottom: 1px solid #C1A68B; 
   
}

tr.data-row td {
    padding-bottom: 10px !important;
    padding-left: 5px;
}

tr.data-row-2 {
    vertical-align:top;
}

tr.clickable-row:hover {
    cursor: pointer; /* Makes the row look clickable */
    background-color: #f0f0f0;
  }


.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.cal-address-section {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

