html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  min-height: 100vh;
}

* {
  box-sizing: border-box;
}

body.public {
    background-color: #f5f7f8;
  }

#root {
  width: 100%;
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #eceef4;
  --color-gray-light: #e6e6e6;
  --color-gray-lightest: #f4f5f9;
  --color-teal: #398da7;
  --color-teal-dark: #00536d;

  --font-size-sm: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xlg: 1.5rem;

  --padding-sm: 12px;
  --padding-md: 24px;
  --padding-lg: 36px;

  --border-radius-sm: 12px;
  --border-radius-md: 24px;
  --border-radius-lg: 36px;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  background-color: var(--color-white);
}

li {
  list-style: none;
}

ul,
li {
  padding: 0;
}

.notice,
.alert {
  width: 100%;
  padding: 16px;
  text-align: center;
  background: #fef1e1;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
button,
ul,
li,
input {
  font-family: 'Inter', sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

button span {
    font-size: 14px;
  }

p {
  line-height: 1.75rem;
  color: #444444;
}

form input[type='text'] {
    margin-bottom: 16px;
    font-size: 14px;
  }

.fc .fc-toolbar-title {
  font-size: 16px;
  font-weight: 600;
}

.fc-event {
  cursor: pointer;
  text-overflow: ellipsis;
}

.fc .fc-daygrid-event {
  border-radius: 12px;
}

.fc .fc-view-harness {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e6e6e6;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
}

.fc-theme-standard .fc-scrollgrid,
.fc-theme-standard td,
.fc-theme-standard th {
  border: none;
}

.fc-scrollgrid-sync-inner {
  padding: 16px;
}

.fc-scrollgrid-sync-inner a {
    color: #000;
    font-size: 14px;
  }

.fc-col-header-cell .fc-scrollgrid-sync-inner {
    border-bottom: 1px solid #e6e6e6;
  }

.fc .fc-daygrid-day.fc-day-today {
  background-color: initial;
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
    background-color: #fd0080;
    border: 3px solid #ffcee1;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #ffffff;
  }

.fc .fc-button-primary,
.fc .fc-button-primary:disabled {
  background-color: #ffffff;
  color: #000000;
  border-radius: 24px;
  border: 1px solid #e6e6e6;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}

.fc-scrollgrid-sync-table tr {
    border-bottom: 1px solid #e6e6e6;
  }

.fc-scrollgrid-sync-table tr td:not(:last-of-type) {
        border-right: 1px solid #e6e6e6;
      }

.fc-h-event {
  border: none;
  background-color: #e9f6f6;
  padding: 6px 16px;
  border-radius: 5px;
  text-overflow: ellipsis;
  font-size: 12px !important;
  margin-bottom: 4px;
  white-space: initial;
}

.fc-h-event::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 100px;
    background-color: #a9d5db;
  }

.fc-h-event:focus {
    background: #2c7e97;
  }

.fc-h-event:focus::before {
      content: '';
      position: absolute;
      left: 8px;
      top: 8px;
      bottom: 8px;
      width: 3px;
      border-radius: 100px;
      background-color: #a9d5db;
    }

.fc-h-event:focus .fc-event-title {
      color: #ffffff;
    }

.fc-h-event .fc-event-title {
  color: #1790a1;
  font-weight: 700;
}

.fc-event-selected::after,
.fc-event:focus::after {
  background: none;
  inset: 0;
  content: '';
}

.nav-logo {
  height: 56px;
  width: 83px;
}

.nav-logo path {
    fill: #ff244c;
  }

.hero-heading {
  font-weight: 900;
  line-height: 96px;
}

.simple {
  font-weight: 900;
}

.home h2 {
    color: #505050;
  }

.home .heading-projects {
    color: #f9b700;
  }

.home .heading-tasks {
    color: #1ad19d;
  }

.home .heading-calendar {
    color: #ff244c;
  }

.home .heading-posts {
    color: #488cf3;
  }

.home .heading-files {
    color: #ff7301;
  }

.home-feature {
  min-height: 680px;
  border-radius: 64px;
}

.home-projects {
  background: #fff8ea;
  border-color: #ffeab1;
}

.home-tasks {
  background: #f4fffe;
  border-color: #c3ebdf;
}

.home-calendar {
  background: #fff5f5;
  border-color: #ffdde3;
}

.home-posts {
  background: #f5f9ff;
  border-color: #cadefe;
}

.home-files {
  background: #fff4ef;
  border-color: #ffdcbf;
}
