﻿@charset "UTF-8";
input[type=file].form-control {
  line-height: 1.5;
}

input[type=checkbox].form-control {
  width: auto;
  height: auto;
  margin-bottom: 0.5rem;
}

.form-group.inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-group.inline label {
  min-width: 100px;
}
.form-group.inline input {
  flex: 1;
  border: 1px solid #E5EAEE;
}
.form-group.inline a {
  margin-left: 5px;
}

.DayPickerInput input {
  background: url("/images/date_popup.png") no-repeat right 3px center;
}

svg {
  pointer-events: none;
}

.min-w-100 {
  min-width: 100px;
}

.image-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #E5EAEE;
  padding: 0;
}
.image-box img {
  max-width: 100%;
  border: none;
  width: auto;
  height: auto;
}
.image-box.dashboard {
  width: 40px;
  height: 40px;
  border: 0px;
}

.popup-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: blue;
}

.popup-content {
  visibility: hidden;
  background-color: #555; /* Background color for the popup */
  color: white; /* Text color */
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  position: fixed; /* Fixed position relative to the viewport */
  z-index: 9999; /* Ensure it's on top */
  /* Add an arrow */
  width: 250px;
  top: 0;
  left: 0;
  transform: translate(-50%, -100%);
}

/* Style for the popup arrow */
.popup-content::after {
  content: "";
  position: absolute;
  top: 100%; /* Position at the bottom of the popup */
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Make popup visible on hover */
/*.popup-container:hover .popup-content {
    visibility: visible;
}*/
.popup-content::after {
  color: red;
}

.experiences {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: white;
  border-radius: 0.25rem;
}
.experiences > div {
  text-align: center;
}
.experiences h3 {
  font-size: 18px;
  font-weight: bold;
}
.experiences span {
  font-size: 42px;
  font-weight: bold;
}

.events {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.events > div {
  flex: 1;
}
.events .card-header svg {
  margin-right: 10px;
}
.events input[type=checkbox] {
  accent-color: #ABCA62;
  width: 15px;
  height: 15px;
}
.events .custom-checkbox input {
  display: none; /* Hide default checkbox */
}
.events .custom-checkbox .checkmark {
  width: 22px;
  height: 22px;
  background-color: #ABCA62;
  border: 1px solid #ABCA62;
  display: inline-block;
  position: relative;
  border-radius: 50%;
}
.events .custom-checkbox :not(input:checked) + .checkmark {
  background-color: white;
  border: 1px solid gray;
}
.events .custom-checkbox input:checked + .checkmark::after {
  content: "✔"; /* Unicode checkmark */
  color: white; /* Change checkmark color */
  font-size: 14px;
  position: absolute;
  left: 4px;
  top: 0px;
}
.events .border-bottom {
  border-bottom: 1px solid #ECF0F3;
}

.module-cards {
  position: absolute;
  top: 25%;
  height: 200px;
}

.module-card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 200px;
  background-color: lightgreen;
  float: left;
  margin-right: 50px;
}

.module-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.module-page .modules .module {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 200px;
  background-color: white;
  float: left;
  margin-right: 50px;
  color: #464E5F;
  cursor: pointer;
}

.headcount span.symbol-label {
  color: #ABCA62 !important;
}
.headcount button {
  font-weight: 500 !important;
  background-color: transparent !important;
  color: #464E5F !important;
  border: 0 !important;
}
.headcount button.selected {
  background-color: #ABCA62 !important;
  color: white !important;
}
.headcount button:hover:not(.selected) {
  background-color: #5975B9 !important;
  color: white !important;
}

.graph-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.graph-panel .graph-detail {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.graph-panel .graph-detail .top {
  display: flex;
  align-items: center;
}
.graph-panel .graph-detail .top span {
  margin-left: 10px;
  font-size: 24px;
}
.graph-panel .graph-detail .bottom {
  font-size: 18px;
}
.graph-panel hr {
  width: 100%;
  height: 1px;
  color: gray;
  margin: 10px 0 20px 0 !important;
}

.table td button {
  margin-right: 3px;
  margin-bottom: 3px;
}

.uploaded-image {
  max-width: 300px;
  max-height: 300px;
}

.DayPickerInput {
  display: block !important;
}

a {
  color: #4B77BE;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: rgb(50.0102040816, 83.8632653061, 138.4897959184);
  text-decoration: underline;
}
