.App {
  text-align: center;
  height: 100vh;
  font-family: Roboto;
}

.App-header {
  color: #fff;
  background-color: #282c34;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-size: calc(10px + 2vmin);
  display: flex;
}

.App-link {
  color: #61dafb;
}

.main-layout.settings-layout {
  flex-direction: row;
  height: calc(100vh - 70px);
  padding: 0 10px 10px 0;
  display: flex;
}

.settings-sidebar {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  width: 350px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.settings-sidebar::-webkit-scrollbar {
  width: 8px;
}

.settings-sidebar::-webkit-scrollbar-track {
  background: none;
}

.settings-sidebar::-webkit-scrollbar-thumb {
  opacity: 0;
  background-color: rgba(0, 0, 0, .3);
  border-radius: 4px;
  transition: opacity .3s;
}

.settings-sidebar:hover::-webkit-scrollbar-thumb {
  opacity: 1;
  background-color: rgba(0, 0, 0, .5);
}

.settings-sidebar:hover {
  scrollbar-color: rgba(0, 0, 0, .5) transparent;
}

.settings-nav-item {
  cursor: pointer;
  padding: 12px 24px;
  transition: background-color .2s;
  position: relative;
}

.settings-nav-item:before {
  content: "";
  background-color: #f67e35;
  width: 0;
  height: 100%;
  transition: width .2s;
  position: absolute;
  top: 0;
  left: 0;
}

.settings-nav-item:hover {
  background-color: #f9fafb;
}

.settings-nav-item:hover:before {
  width: 4px;
}

.settings-nav-item:hover .MuiListItemIcon-root {
  color: #f67e35;
}

.settings-nav-item.active:before {
  width: 4px;
}

.settings-nav-item.active .MuiListItemIcon-root {
  color: #f67e35;
}

.settings-content {
  background: #fff;
  border-radius: 16px;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
  display: flex;
  overflow-y: auto;
}

.settings-content-header {
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  display: flex;
}

.back-button .MuiSvgIcon-root {
  font-size: 28px;
}

.settings-content-body {
  flex-grow: 1;
  padding: 24px;
}

.settings-tab-content {
  text-align: left;
}

.settings-content-tabs .MuiTab-root {
  color: rgba(66, 66, 68, .898);
  text-transform: none;
  font-size: 24px;
  font-weight: 600;
}

.settings-content-tabs .MuiTab-root.Mui-selected {
  color: rgba(66, 66, 68, .898);
}

.settings-content-tabs .MuiTabs-indicator {
  background-color: #f67e35;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.twake {
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  padding: .2rem;
  font-family: Cal Sans;
  font-size: 28.07px;
  font-weight: 400;
  line-height: 100%;
}

.calendar-text {
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  background: linear-gradient(#ffb73d, #f26c32);
  -webkit-text-fill-color: transparent;
  color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  background-clip: text;
  padding: .2rem;
  font-family: Cal Sans;
  font-size: 28.07px;
  font-weight: 400;
  line-height: 100%;
}

.menubar {
  z-index: 1300;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: .5rem;
  display: flex;
}

.menubar-item {
  align-items: center;
  margin-right: 65px;
  display: flex;
}

.tc-home {
  cursor: pointer;
}

.logo {
  max-width: 230px;
  margin-left: 1rem;
  padding: 0;
  font-size: 1.5rem;
}

.nav-month {
  gap: 38px;
  padding-left: 2px;
  padding-right: 2px;
}

.day-selector {
  font-size: small;
  font-weight: 100;
}

.search-bar {
  width: 600px;
  height: 43.89px;
  top: 18px;
  left: 887px;
}

.app-grid {
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 0;
  padding: 0;
  display: grid;
}

.app-grid p {
  text-align: center;
  margin-top: 6px;
  font-size: 14px;
}

.left-menu {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.right-menu {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.current-date-time {
  color: #243b55;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}

body.fullscreen-view .navigation-controls, body.fullscreen-view .current-date-time, body.fullscreen-view .refresh-button, body.fullscreen-view .select-display, body.fullscreen-view .search-container {
  display: none;
}

.search-container {
  width: 100%;
}

.search-layout {
  background: #fff;
  border-radius: 16px;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
  display: flex;
  overflow-y: auto;
}

.search-layout .noResults, .search-layout .loading, .search-layout .error {
  align-content: center;
  align-items: center;
  height: 90%;
  bottom: 50%;
}

.back-button {
  align-content: flex-start;
  align-items: center;
  display: flex;
}

.search-result-content-header {
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  display: flex;
}

.search-result-content-body {
  flex-grow: 1;
}

.App {
  background-color: #f3f6f9;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.main-layout {
  height: calc(100vh - 70px);
  display: flex;
}

.main-layout.calendar-layout {
  background-color: #fff;
  flex-direction: row;
}

.calendar {
  flex-grow: 1;
  height: 100%;
  overflow: hidden;
}

.calendarListHeader {
  align-items: center;
  margin-left: 25%;
  padding-top: 10px;
  display: flex;
}

.sidebar {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  border-right: 2px solid #f3f4f6;
  flex-direction: column;
  width: 270px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

.sidebar::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-track {
  background: none;
}

.sidebar::-webkit-scrollbar-thumb {
  opacity: 0;
  background-color: rgba(0, 0, 0, .3);
  border-radius: 4px;
  transition: opacity .3s;
}

.sidebar:hover::-webkit-scrollbar-thumb {
  opacity: 1;
  background-color: rgba(0, 0, 0, .5);
}

.sidebar:hover {
  scrollbar-color: rgba(0, 0, 0, .5) transparent;
}

[data-theme="dark"] .fc-timegrid-slot:after {
  border-top: 1px dotted rgba(255, 255, 255, .2);
}

#calendar {
  flex: 1;
  overflow: hidden;
}

.fc-daygrid-day-top {
  flex-direction: column;
  align-items: center;
  padding: .5rem 0;
  font-family: Inter, sans-serif;
  display: flex;
}

.sidebar-calendar {
  background-color: #fff;
  border-radius: 12px;
  flex-direction: column;
  gap: 30px;
  width: 280px;
  padding: 20px;
  font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.sidebar-calendar h2 {
  color: #333;
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 700;
}

.calendar-list {
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.calendar-list li {
  color: #444;
  cursor: pointer;
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  font-weight: 600;
  transition: background-color .2s;
  display: flex;
}

.event-dot {
  background-color: rgba(29, 25, 43, .12);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin-top: 2px;
  margin-left: auto;
  margin-right: auto;
}

.weekSelector {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.fc-theme-standard td, .fc-theme-standard th {
  border: 1px solid rgba(181, 183, 192, .2);
}

th.fc-col-header-cell.fc-day {
  border-left: 0;
}

a.fc-timegrid-axis-cushion {
  color: #243b55;
  text-align: center;
  letter-spacing: .391px;
  font-family: Roboto;
  font-size: 12.507px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.76px;
}

.fc-timegrid-slot-label {
  transition: opacity .3s ease-in-out;
}

.fc-daygrid-day-top small {
  color: #8c9caf;
  letter-spacing: .25px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.fc-daygrid-day-top .fc-daygrid-day-number, span.fc-daygrid-day-number {
  color: #243b55;
  width: 48px;
  margin: 0 6px 0 0;
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 39px;
  position: relative;
}

.fc-daygrid-day-frame .fc-daygrid-day-top .fc-daygrid-day-number {
  text-align: center;
  width: 100%;
  padding: 0;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.fc-daygrid-day-frame span.fc-daygrid-day-number:after {
  width: 25px;
  height: 25px;
  top: -6px;
  left: -6px;
}

.fc-daygrid-day-top .fc-daygrid-day-number:after, span.fc-daygrid-day-number:after {
  content: "";
  z-index: -1;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  transition: background-color .3s;
  position: absolute;
  top: 1px;
  left: 1px;
}

span.fc-daygrid-day-number.current-date {
  color: #fff;
}

span.fc-daygrid-day-number.current-date:after {
  background-color: #fb9e3a;
}

td.fc-timegrid-slot.fc-timegrid-slot-label.fc-scrollgrid-shrink, td.fc-timegrid-slot.fc-timegrid-slot-label.fc-timegrid-slot-minor {
  border: 0;
}

th.fc-timegrid-axis.fc-scrollgrid-shrink {
  border: 0;
  border-right: 1px solid rgba(181, 183, 192, .2);
}

.fc .fc-timegrid-axis-cushion {
  text-align: left;
  min-width: 80px;
  max-width: 80px;
  padding: 0 0 0 10px;
  font-family: Roboto;
  font-size: 12.507px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.76px;
}

.fc .fc-timegrid-divider {
  height: 0;
  display: none;
}

.fc-timegrid-slot-label-cushion {
  color: #aea9b1;
  letter-spacing: .25px;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

th.fc-col-header-cell.fc-day {
  border-bottom: 0;
  border-right: 0;
}

.fc .fc-scrollgrid {
  border: 0;
}

.fc .fc-timegrid-slot-label {
  justify-content: flex-end;
}

.fc .fc-timegrid-slot-label .fc-timegrid-slot-label-frame {
  position: relative;
  transform: translate(-15px, -12px);
}

.fc .fc-timegrid-slot-label .fc-timegrid-slot-label-frame:after {
  content: "";
  z-index: -1;
  background-color: rgba(181, 183, 192, .2);
  width: 10px;
  height: 1px;
  position: absolute;
  top: 9.5px;
  right: -15px;
}

.fc .fc-timegrid-col.fc-day-today, .fc .fc-daygrid-day.fc-day-today {
  background-color: #fff;
}

.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
  min-height: 36px;
}

.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
  margin-bottom: 0;
}

.fc .fc-timegrid-now-indicator-line {
  z-index: 5;
  border: 0 solid #f67e35;
  border-top-width: 2px;
  position: absolute;
  left: 0;
  right: 0;
}

.fc .fc-timegrid-now-indicator-line:after {
  content: "";
  z-index: 5;
  background-color: #f67e35;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  top: -6px;
  left: -5px;
}

.fc .fc-timegrid-now-indicator-arrow {
  border: 0;
  width: auto;
  height: auto;
  position: relative;
  display: block !important;
}

.fc .fc-timegrid-now-indicator-arrow:before, .now-time-label {
  content: attr(data-time);
  color: #f67e35;
  white-space: nowrap;
  letter-spacing: .25px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: -2px;
  left: 25px;
}

.timegrid-slot-label-hidden {
  opacity: .2;
}

.fc-day-today .fc-timegrid-now-indicator-container {
  overflow: unset;
}

.fc .fc-timegrid-slot {
  height: auto;
  min-height: 20px !important;
}

.fc .fc-timegrid-slot-label {
  align-items: flex-start;
  height: 100%;
  padding-top: 2px;
  display: flex;
}

tr:has( > td.fc-timegrid-divider.fc-cell-shaded) {
  display: none;
}

.fc .fc-scrollgrid-section td {
  border-bottom: 0;
}

.fc .fc-scrollgrid-section td .fc-daygrid-day-frame {
  border-bottom: 1px solid rgba(181, 183, 192, .2);
}

.fc-dayGridMonth-view .fc-scrollgrid-section td .fc-daygrid-day-frame {
  border-bottom: none;
}

th.fc-col-header-cell.fc-day {
  cursor: pointer;
}

th.fc-col-header-cell.fc-day:hover .fc-daygrid-day-number:not(.current-date):after {
  background-color: rgba(184, 193, 204, .337);
}

.fc-daygrid-day:hover {
  transition: background-color .3s;
  background-color: rgba(184, 193, 204, .1) !important;
}

.hoverable-day-cell {
  transition: background-color .3s;
}

.hour-highlight {
  pointer-events: none;
  z-index: 1;
  transition: background-color .3s;
  position: absolute;
  left: 0;
  right: 0;
  background-color: rgba(184, 193, 204, .1) !important;
}

.fc-timegrid-slot-label {
  background-color: #fff !important;
}

thead .fc-scroller, tbody > tr.fc-scrollgrid-section:first-of-type .fc-scroller {
  overflow: hidden !important;
}

.navigation-controls {
  margin-right: 16px;
}

.fc .fc-timegrid-slot-minor {
  border-top-style: none;
}

.fc-more-popover {
  background: #fff;
  border-radius: 8px;
  width: 244px;
  font-family: Inter, sans-serif;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
  z-index: 700 !important;
}

.fc-more-popover .fc-popover-header {
  background: #fcfcfc;
  border-bottom: 1px solid #eee;
  justify-content: space-between;
  align-items: center;
  width: 244px;
  height: 40px;
  padding: 12px;
  display: flex;
}

.fc-more-popover .fc-popover-header .fc-popover-title {
  color: #243b55;
  letter-spacing: .1px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.fc-more-popover .fc-popover-header .fc-popover-close {
  color: #605d62;
  cursor: pointer;
}

.fc-more-popover .fc-popover-body {
  background: #fff;
  max-height: 208px;
  overflow: auto;
  padding: 0 !important;
}

.fc-more-popover .fc-popover-body .MuiCard-root {
  border-radius: 8px;
  margin: 2px 6px;
  transition: background .15s;
  box-shadow: none !important;
  background-color: rgba(0, 0, 0, 0) !important;
  border: none !important;
}

.fc-more-popover .fc-popover-body .MuiCard-root:hover {
  background: #f7f7f8;
}

.fc-more-popover .fc-popover-body .MuiCard-root .MuiCardHeader-root {
  padding: 4px 8px;
}

.fc-more-popover .fc-popover-body .MuiCard-root .MuiCardHeader-root .MuiTypography-root {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-family: Inter !important;
  font-weight: 400 !important;
  font-style: Regular !important;
  letter-spacing: .25px !important;
  vertical-align: middle !important;
  color: #1c1b1f !important;
  font-size: 14px !important;
  line-height: 20px !important;
}

.fc-more-popover .fc-popover-body .MuiCard-root .MuiCardHeader-root .MuiTypography-root .compactStartTime {
  display: none;
}

.fc-more-popover .fc-popover-body .MuiCard-root .MuiCardContent-root {
  color: #6d7885;
  padding: 0 8px 4px;
  font-size: 12px;
  line-height: 16px;
}

.fc-more-popover .fc-popover-body .fc-more-popover-misc {
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.fc-event {
  align-content: left;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  width: 95%;
  height: 100%;
}

.fc-event .fc-event-main {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.fc-timegrid-event-harness-inset .fc-timegrid-event {
  box-shadow: none;
}

.fc-timegrid-slot-label[data-time="00:00:00"] .fc-timegrid-slot-label-cushion, .fc-timegrid-slot-label[data-time="00:00:00"] .fc-scrollgrid-shrink-cushion, .fc-timegrid-slot-label[data-time="00:00:00"] .fc-timegrid-slot-label-frame:after {
  opacity: 0;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  whiteSpace: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.date-time-group .MuiFormControl-root {
  margin: 0;
}

.date-time-group.show-full-field > .MuiBox-root:first-of-type {
  margin-bottom: 8px;
}

