@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css');

html,
body {
  margin: 0;
  padding: 0;
}

footer {
  /* position: fixed; 
  bottom: 0; 
  right: 0; 
  left: 0; Przyklejenie do lewej krawędzi ekranu */
  background-color: #f0f0f0;
  padding: 10px;
  width: 100%;
  margin-top: 16px;
}
.container {
  display: flex;
  flex-direction: column;
  min-height: 80vh;
}
header {
  background-color: #f0f0f0;
  padding-right: 10px;
  padding-left: 10px;
}

.alert {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9999;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 1.6rem 15rem;
  -webkit-box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25);
}
.alert--info {
  background-color: #2045bf;
}
.alert--success {
  background-color: #20bf6b;
}
.alert--error {
  background-color: #eb4d4b;
}
@media screen and (max-width: 767px) {
  .fc-toolbar.fc-header-toolbar {
    flex-direction: column;
  }
  .fc-toolbar-chunk {
    display: table-row;
    text-align: center;
    padding: 5px 0;
  }
}
.autoComplete_wrapper > input {
  height: 3rem;
  width: 370px;
  margin: 0;
  padding: 0 2rem 0 3.2rem;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 1rem;
  text-overflow: ellipsis;
  color: rgba(0, 0, 0, 0.5); /* Kolor tekstu */
  outline: 0;
  border-radius: 10rem;
  border: .05rem solid rgba(0, 0, 0, 0.125); /* Kolor obramowania */
  background-image: url(../images/search.svg);
  background-size: 1.4rem;
  background-position: left 1.05rem top .8rem;
  background-repeat: no-repeat;
  background-origin: border-box;
  background-color: #fff; /* Kolor tła */
  transition: all .4s ease;
  -webkit-transition: all -webkit-transform .4s ease;
}
.autoComplete_wrapper {
  display: inline-block;
  position: relative;
}
.autoComplete_list {
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.125); /* Kolor obramowania */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175); /* Cień */
  max-height: 250px;
  overflow-y: auto;
}

.autoComplete_list > div {
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.autoComplete_list > div:hover {
  background-color: rgba(0, 0, 0, 0.075); /* Kolor podświetlenia po najechaniu */
}

.autoComplete_wrapper > ul:empty, .autoComplete_wrapper > ul[hidden] {
  display: block;
  opacity: 0;
  transform: scale(0);
}
.autoComplete_wrapper > ul {
  position: absolute;
  max-height: 226px;
  overflow-y: scroll;
  box-sizing: border-box;
  left: 0;
  right: 0;
  margin: .5rem 0 0 0;
  padding: 0;
  z-index: 1;
  list-style: none;
  border-radius: .6rem;
  background-color: #fff;
  border: 1px solid rgba(33,33,33,.07);
  box-shadow: 0 3px 6px rgba(149,157,165,.15);
  outline: 0;
  transition: opacity .15s ease-in-out;
  -moz-transition: opacity .15s ease-in-out;
  -webkit-transition: opacity .15s ease-in-out;
}
[hidden] {
  display: none !important;
}

.autoComplete_wrapper > ul > li:hover {
  cursor: pointer;
  background-color: rgba(122, 153, 255, 0.15);
}

.autoComplete_wrapper > ul > li {
  margin: .3rem;
  padding: .3rem .5rem;
  text-align: left;
  font-size: 1rem;
  color: #212121;
  border-radius: .35rem;
  background-color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all .2s ease;
}

.autoComplete_wrapper > ul {
  list-style: none;
}

#attendance-report td.fc-timeline-slot{
  width:100px;
}
#attendance-report th.fc-timeline-slot{
  width:100px;
}

#training-report .event-details {
  display: flex;
  flex-direction: column;
}