.calendar {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.calendar else {
  box-shadow: none;
}
.calendar {
  padding: calc(80px + 8px) 20px 20px 20px;
  box-sizing: border-box;
  min-width: 280px;
  position: relative;
  margin: 0 20px;
  max-width: 100%;
}
.calendar .month-navigation {
  padding: 5px;
  margin-top: 10px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  width: fit-content;
}
.calendar .month-navigation a {
  color: blue;
  text-decoration: none;
}
.calendar .month-navigation a:hover, .calendar .month-navigation a:focus {
  color: white;
}
.calendar .month-navigation:hover, .calendar .month-navigation:focus {
  background-color: #555555;
  color: white;
}
.calendar .day-of-week,
.calendar .date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar .day-of-week {
  text-align: center;
  font-weight: bold;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  color: blueviolet;
  padding: 10px 0;
  background-color: #f0f0f0;
  border-bottom: 10px solid #ccc;
  margin-top: 1.25em;
  overflow: hidden;
}
.calendar .event-present {
  font-weight: bold;
}
.calendar .date-grid {
  gap: 0px;
  margin-top: 0.5em;
}
.calendar .date-grid .day-grid {
  background-color: #ffffff;
  border: 1px solid rgb(0, 0, 0);
  border-collapse: collapse;
  padding: 10px;
  text-align: center;
  overflow: hidden;
  min-width: 0;
}
.calendar .date-grid .day-grid:hover {
  background-color: #f0f0f0;
}
.calendar .date-grid .day-grid a {
  text-decoration: none;
  color: black;
}
.calendar .date-grid .day-grid a:hover {
  color: rgb(0, 0, 216.75);
  text-decoration: underline;
}

.newtable-form {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.newtable-form else {
  box-shadow: none;
}
.newtable-form {
  padding: 20px;
  box-sizing: border-box;
  min-width: 280px;
  margin: 20px;
}
.newtable-form label {
  display: inline-block;
  margin: 20px 0;
}
.newtable-form input[type=text],
.newtable-form input[type=date],
.newtable-form input[type=time],
.newtable-form select {
  padding: 8px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.legend-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.legend-list ul {
  list-style-type: none;
  padding: 0;
}
.legend-list li {
  margin: 0 10px;
  display: flex;
  align-items: center;
}
.legend-list li i {
  margin-right: 8px;
}

.calendar .event-preview {
  position: absolute;
  top: -40px;
  right: 8px;
  transform: translateY(-100%-8px);
  width: 700px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  padding: 8px;
  z-index: 50;
}
.calendar .event-preview img {
  float: left;
  max-width: 300px;
  max-height: 300px;
  margin-right: 8px;
}
.calendar .event-preview .buttons-section {
  display: flex;
  justify-content: space-around;
}

.dispo-grid {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.dispo-grid else {
  box-shadow: none;
}
.dispo-grid {
  padding: 20px;
  box-sizing: border-box;
  min-width: 280px;
  margin: 20px;
}

.month-row,
.dispo-row,
.check-row {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
}

.day-title,
.day-cell,
.check-cell, .name-cell {
  box-sizing: border-box;
  align-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid #ccc;
  padding: 1px;
  font-family: "Arial", sans-serif;
}

.day-title,
.day-cell,
.check-cell {
  min-width: 52px;
}

.name-cell,
.empty-title,
.empty-check-cell {
  flex: 0 0 130px;
  background-color: #f9f9f9;
}

.fa-calendar-check {
  color: green;
}

.fa-calendar-xmark {
  color: red;
}

.member-selection-box {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.member-selection-box else {
  box-shadow: none;
}
.member-selection-box {
  padding: 20px;
  box-sizing: border-box;
  min-width: 280px;
  margin: 20px;
}
.member-selection-box h2 {
  margin-top: 0;
}
.member-selection-box p {
  margin: 5px 0;
}
.member-selection-box .member-checkbox-container {
  display: flex;
  flex-flow: row wrap;
  margin: 5px 0;
}
.member-selection-box .member-checkbox-container .member-checkbox {
  width: 200px;
}
.member-selection-box .member-checkbox-container label {
  margin-left: 5px;
}

/* left fixed navigation */
nav {
  margin: 0;
  padding: 0;
  position: fixed;
  width: 130px;
  top: 0;
  left: 0;
  height: 100vh;
  background-color: #f1f1f1;
  z-index: 9999;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
nav li a,
nav li .dropdown-menu {
  display: block;
  box-sizing: border-box;
  border: none;
  background: none;
  color: #000;
  padding: 10px 14px;
  text-decoration: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  outline: none;
  font-family: "Arial", sans-serif;
}
nav li a:hover {
  background-color: #555555;
  color: white;
}

.dropdown {
  position: relative;
  display: block;
  width: 100%;
}
.dropdown-menu:hover {
  background-color: #555555;
  color: white;
}

.dropdown-menu-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  left: 100%;
  top: 0;
}

.dropdown:hover .dropdown-menu-content,
.dropdown:focus .dropdown-menu-content {
  display: block;
}

/* end navigation */
footer {
  margin: 20px 20px 0 150px;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
footer else {
  box-shadow: none;
}
footer {
  padding: 20px;
  box-sizing: border-box;
  min-width: 280px;
}
footer p {
  margin: 0;
  padding: 0;
  color: #666;
  font-size: 0.9em;
  flex: 1;
}
footer .footer-inner {
  width: 100%;
  max-width: 1100px;
  padding: 0 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 5px;
}
table th, table td {
  padding: 12px 15px;
  border: 1px solid rgb(193.8, 193.8, 193.8);
}
table th {
  background-color: rgb(255, 255, 200.05);
  color: #333;
}
table tr:nth-child(even) {
  background-color: rgb(255, 255, 225.55);
}

/* global reset + layout */
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 100%;
  font-family: "Arial", sans-serif;
  background-color: lightyellow;
}
html .acces-local-ok,
body .acces-local-ok {
  font-weight: bold;
  font-style: italic;
}
html .qr-code,
body .qr-code {
  max-width: 128px;
  max-height: 128px;
}
html .validation-message,
body .validation-message {
  color: green;
  font-weight: bold;
  margin-top: 10px;
}
html .error-message,
body .error-message {
  color: red;
  font-weight: bold;
  margin-top: 10px;
}
html main,
body main {
  margin-left: 130px;
  padding: 0px;
  flex: 1;
}
html main h1,
body main h1 {
  font-size: 2em;
  color: #333;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  margin: 20px 0;
}
html main h2,
body main h2 {
  margin: 0;
  font-size: 1.5em;
  color: #333;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
html main button,
body main button {
  padding: 5px;
  margin-top: 10px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  width: fit-content;
}
html main button a,
body main button a {
  color: blue;
  text-decoration: none;
}
html main button a:hover, html main button a:focus,
body main button a:hover,
body main button a:focus {
  color: white;
}
html main button:hover, html main button:focus,
body main button:hover,
body main button:focus {
  background-color: #555555;
  color: white;
}
html main button,
body main button {
  cursor: pointer;
}
html main .hero-container,
body main .hero-container {
  background-image: url("images/hero_background.jpg");
  background-size: cover;
  background-position: top;
  position: relative;
  color: white;
  height: 300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
html main .hero-container .logo-main,
body main .hero-container .logo-main {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px;
  height: auto;
}
html main .hero-container .hero-text,
body main .hero-container .hero-text {
  color: whitesmoke;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 2.5em;
}
html main .default-box,
body main .default-box {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
html main .default-box else,
body main .default-box else {
  box-shadow: none;
}
html main .default-box,
body main .default-box {
  padding: 20px;
  box-sizing: border-box;
  min-width: 280px;
  margin: 20px;
  padding: 20px;
  color: #666;
}
html main .default-box img.event-annonce,
body main .default-box img.event-annonce {
  float: left;
  margin-right: 15px;
  max-height: 100px;
}
html main .side-box-container,
body main .side-box-container {
  margin: 24px 20px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}
html main .side-box-container .side-box,
body main .side-box-container .side-box {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
html main .side-box-container .side-box else,
body main .side-box-container .side-box else {
  box-shadow: none;
}
html main .side-box-container .side-box,
body main .side-box-container .side-box {
  padding: 20px;
  box-sizing: border-box;
  min-width: 280px;
  flex: 1 1 calc(50% - 20px);
  display: flex;
  flex-direction: column;
}
html main .side-box-container .side-box h2,
body main .side-box-container .side-box h2 {
  margin: 0;
  font-size: 1.5em;
}
html main .side-box-container .side-box p,
body main .side-box-container .side-box p {
  margin: 0;
  padding: 20px 0 0 0;
  font-size: 1em;
  color: #666;
  flex: 1;
}
html main .side-box-container .side-box ul,
body main .side-box-container .side-box ul {
  color: #666;
}
html main .side-box-container .side-box a,
body main .side-box-container .side-box a {
  color: blue;
  text-decoration: none;
}
html main .side-box-container .side-box a:hover,
body main .side-box-container .side-box a:hover {
  color: rgb(0, 0, 216.75);
  text-decoration: underline;
}
html main form label,
body main form label {
  margin-top: 10px;
}
html main form .form-row,
body main form .form-row {
  display: grid;
  grid-template-columns: 130px 160px auto;
  column-gap: 12px;
  align-items: center;
  justify-content: start;
}
html main form .form-row label,
body main form .form-row label {
  margin: 0;
}
html main form .form-row input,
body main form .form-row input {
  margin: 0;
}
html main form input[type=text],
html main form input[type=password],
html main form input[type=email],
html main form input[type=number],
html main form select,
body main form input[type=text],
body main form input[type=password],
body main form input[type=email],
body main form input[type=number],
body main form select {
  padding: 3px;
  margin-top: 5px;
  border: 1px solid rgb(193.8, 193.8, 193.8);
  border-radius: 4px;
  font-size: 1em;
}
html main form input[type=submit],
body main form input[type=submit] {
  margin-top: 10px;
  padding: 5px;
  background-color: #f1f1f1;
  color: blue;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  cursor: pointer;
}
html main form input[type=submit]:hover,
body main form input[type=submit]:hover {
  background-color: #555555;
  color: white;
}
html main form input[type=submit]:disabled,
body main form input[type=submit]:disabled {
  margin-right: 5px;
  background-color: rgb(243.8, 243.8, 243.8);
  color: #6666ff;
  opacity: 0.9;
  pointer-events: none;
  cursor: not-allowed;
}
html main form .required,
body main form .required {
  color: red;
  font-weight: bold;
}

/*# sourceMappingURL=styles.css.map */
