@charset "UTF-8";
main {
  max-width: 900px;
  width: 90%;
  margin: 100px auto 20px;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #FFFFFF;
}

.login-wrapper {
  max-width: 400px;
  width: 100%;
  background-color: #FFFFFF;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.062745098);
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.1882352941);
}
.login-wrapper img {
  display: block;
  position: absolute;
  bottom: -20px;
  opacity: 0.1;
  z-index: 0;
}
.login-wrapper .input-group {
  width: 100%;
  margin-bottom: 0.8rem;
}
.login-wrapper .input-group label {
  display: block;
  margin-bottom: 6px;
  color: #414141;
  font-weight: 300;
  font-size: 0.8rem;
}
.login-wrapper .input-group input {
  width: 100%;
  background-color: #FFFFFF;
  padding: 0.4rem 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.062745098);
  height: 60px;
  outline: none;
  font-weight: 700;
  font-size: 1rem;
  color: #414141;
  transition: all 0.3s linear;
}
.login-wrapper .input-group input:focus {
  background-color: rgba(0, 0, 0, 0.062745098);
  border: 1px solid rgba(0, 0, 0, 0.1254901961);
}
.login-wrapper .login-content {
  position: relative;
  z-index: 1;
}
.login-wrapper .login-title {
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1254901961);
  text-align: center;
}
.login-wrapper .login-title h2 {
  font-family: "Dancing Script", cursive;
  font-size: 2.8rem;
  font-weight: 600;
  background: linear-gradient(90deg, #6ee7b7, #3abbb5, #444c57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 1rem;
}
.login-wrapper input[type=submit] {
  width: 100%;
  height: 60px;
  border: none;
  background-color: #414141;
  color: #FFFFFF;
  font-weight: 700;
  margin-top: 1rem;
  cursor: pointer;
  font-size: 1.2rem;
}

.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 70px;
  background-color: #414141;
  box-shadow: #FFFFFF;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 25px;
}
.header a {
  font-size: 20px;
  color: #FFFFFF;
}

.menu {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.1254901961);
  top: 0;
  left: 0;
  z-index: 99999;
  transition: 0.2s linear;
}
.menu .menu-content {
  transform: translateX(-270px);
  width: 90%;
  max-width: 270px;
  background-color: #414141;
  height: 100vh;
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.1882352941);
  transition: 0.2s linear;
}
.menu .menu-content .mc-header {
  padding: 1rem;
  text-align: right;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1254901961);
}
.menu .menu-content .mc-header a {
  font-size: 20px;
  color: #FFFFFF;
}
.menu .menu-content .mc-body {
  height: calc(100vh - 70px);
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu .menu-content .mc-body::-webkit-scrollbar {
  display: none;
}
.menu .menu-content .mc-body a {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  text-decoration: none;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1rem;
  transition: all 0.3s linear;
}
.menu .menu-content .mc-body a:hover {
  filter: brightness(68%);
}

.show {
  opacity: 1 !important;
  visibility: visible !important;
}

.swal2-container {
  z-index: 9999999 !important;
}

.content {
  padding: 1.75rem;
  width: 100%;
  background-color: #FFFFFF;
  border: 0.5px solid #CCCCCC;
  border-radius: 12px;
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.1882352941);
}
.content h1 {
  color: #414141;
  font-size: 16px;
  margin-bottom: 20px;
}
.content p {
  color: #414141;
  font-size: 1rem;
  font-weight: 300;
}

.todays-date {
  text-align: right;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: #414141;
  font-weight: 300;
}

form .form-group {
  width: 100%;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}
form .form-group:last-of-type {
  margin-bottom: 0;
}
form .fg-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}
form .fg-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}
form .fg-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media screen and (max-width: 1100px) {
  form .fg-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media screen and (max-width: 940px) {
  form .fg-3 {
    grid-template-columns: 1fr !important;
  }
}
@media screen and (max-width: 670px) {
  form .fg-4,
  form .fg-2 {
    grid-template-columns: 1fr !important;
  }
}
form .input-group {
  width: 100%;
  position: relative;
}
form .input-group label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #414141;
  font-weight: 300;
  margin-bottom: 4px;
}
form .input-group input,
form .input-group select,
form .input-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 0.5px solid #CCCCCC;
  border-radius: 10px;
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.1882352941);
  transition: all 0.3s linear;
  font-size: 1rem;
  color: #414141;
  font-weight: 700;
  background-color: #FFFFFF;
  height: 70px;
}
form .input-group input:hover, form .input-group input:focus,
form .input-group select:hover,
form .input-group select:focus,
form .input-group textarea:hover,
form .input-group textarea:focus {
  border: 0.5px solid #414141;
}
form .input-group textarea {
  resize: vertical;
  min-height: 120px;
}
form input[type=submit] {
  width: 100%;
  height: 70px;
  margin-top: 1.5rem;
  border-radius: 10px;
  background-color: #0D6EFD;
  color: #FFFFFF;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.1882352941);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s linear;
}
form input[type=submit]:hover {
  filter: brightness(92%);
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.5647058824);
}

.generic-item-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.generic-item-list .generic-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 20px;
  border: 0.5px solid #CCCCCC;
  background-color: #FFFFFF;
  color: #414141;
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.1882352941);
  border-radius: 10px;
  transition: all 0.3s linear;
}
.generic-item-list .generic-item:hover {
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.5647058824);
}
.generic-item-list .generic-item span,
.generic-item-list .generic-item a {
  font-size: 1rem;
  color: #414141;
  font-weight: 700;
}
.generic-item-list .generic-item .gi-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.generic-item-list .generic-item .gi-actions a {
  color: #414141;
}
@media screen and (max-width: 750px) {
  .generic-item-list .generic-item {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .generic-item-list .generic-item .gi-actions {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

.generic-item.open {
  border-left: 5px solid #6BAAFF;
  padding-left: 15px;
}

.generic-item.finished {
  border-left: 5px solid #32CD32;
  padding-left: 15px;
}

.bottom-menu {
  width: 90%;
  height: 125px;
  max-width: 320px;
  min-width: 320px;
  background-color: #FFFFFF;
  padding: 20px;
  position: fixed;
  bottom: calc(-125px - 1rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  border-radius: 10px;
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.1882352941);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.3s linear;
}
.bottom-menu a {
  color: #414141;
  min-height: 90px;
  padding: 0 0.3rem;
}
.bottom-menu .mb-button {
  width: 100%;
  border: 0.5px solid rgba(0, 0, 0, 0.0823529412);
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.1882352941);
  border-radius: 10px;
  color: #414141;
  background-color: #FFFFFF;
  padding: 0.6rem 0.2rem;
  text-align: center;
  transition: all 0.3s linear;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  font-size: 0.9rem;
  font-weight: 300;
}
.bottom-menu .mb-button:hover {
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.5647058824);
}
.bottom-menu .mb-button svg {
  display: block;
  opacity: 0.3;
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.bm-primary {
  background-color: #0D6EFD !important;
  color: #FFFFFF !important;
}

.bottom-menu-button-wrapper {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  z-index: 998;
  border: 0.5px solid rgba(0, 0, 0, 0.1254901961);
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: center;
  bottom: 0.2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.1882352941);
}

.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.5647058824);
  top: 0;
  left: 0;
  z-index: 999999;
  display: none;
  /* Inicialmente invisível */
  justify-content: center;
  justify-items: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
}
.modal.open {
  display: flex;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.modal .modal-content {
  background-color: #FFFFFF;
  max-width: 690px;
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.1882352941);
  width: 90%;
  max-height: calc(100vh - 5%);
  min-height: 180px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(-50px);
  animation: slideIn 0.5s ease forwards;
}
.modal .modal-content .modal-header {
  padding: 1rem;
  border-bottom: 0.5px solid #CCCCCC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.modal .modal-content .modal-header h1,
.modal .modal-content .modal-header h2,
.modal .modal-content .modal-header h3,
.modal .modal-content .modal-header h4,
.modal .modal-content .modal-header h5,
.modal .modal-content .modal-header h6 {
  font-size: 1rem;
  color: #414141;
}
.modal .modal-content .modal-header a {
  font-size: 20px;
  color: #414141;
  cursor: pointer;
}
.modal .modal-content .modal-body {
  padding: 1rem;
  max-height: calc(100vh - 250px);
  overflow: auto;
  width: 100%;
}
.modal .modal-content .modal-footer {
  padding: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.4rem;
  border-top: 0.5px solid #CCCCCC;
}
.modal .modal-content .modal-footer .modal-button {
  padding: 0.2rem 0.6rem;
  border: 0.5px solid transparent;
  border-radius: 10px;
  transition: all 0.3s linear;
  font-size: 0.8rem;
  font-weight: 300;
  color: #414141;
}
.modal .modal-content .modal-footer .modal-button:hover {
  border: 0.5px solid #0D6EFD;
}
.modal .modal-content .modal-footer .mb-primary {
  background-color: #0D6EFD !important;
  color: #FFFFFF !important;
}
.modal .modal-content .modal-footer .mb-primary:hover {
  border: 0.5px solid #0D6EFD !important;
  color: #0D6EFD !important;
  background-color: #FFFFFF !important;
}
.modal .modal-content .modal-footer .mb-danger {
  background-color: #dc3545 !important;
  color: #FFFFFF !important;
}
.modal .modal-content .modal-footer .mb-danger:hover {
  border: 0.5px solid #dc3545 !important;
  color: #dc3545 !important;
  background-color: #FFFFFF !important;
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-top {
  margin-bottom: 1rem;
  border-bottom: 0.5px solid #CCCCCC;
  padding-bottom: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.page-top p {
  font-size: 1.2rem;
  color: #414141;
  font-weight: 700;
}
.page-top a {
  color: #414141;
  font-size: 20px;
}

.action-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.action-buttons a {
  font-size: 0.9rem;
  font-weight: 300;
  color: #FFFFFF;
  background-color: #414141;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
}

.filter,
fieldset {
  border: 1px solid #dce3ec;
  border-radius: 8px;
  background-color: #f7fafd;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.filter legend,
fieldset legend {
  font-size: 1.1rem;
  font-weight: 600;
  color: #3a5169;
  padding: 0 0.5rem;
  position: absolute;
  top: -0.7rem;
  left: 1.5rem;
  background-color: #f7fafd;
}

.filter-form .filter-action {
  width: 100%;
  text-align: right;
}
.filter-form .filter-action .filter-button {
  margin-top: 1.5rem;
  background: transparent;
  border: 1px solid #6baaff;
  color: #6baaff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (max-width: 450px) {
  .filter-form .filter-action .filter-button {
    width: 100%;
  }
}
.filter-form .filter-action .filter-button:hover {
  background-color: #6baaff;
  color: #fff;
}
.filter-form .filter-action .filter-button i {
  font-size: 1rem;
}
.filter-form .form-group {
  gap: 1rem;
}
.filter-form .form-group .input-group {
  display: flex;
  flex-direction: column;
}
.filter-form .form-group .input-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #374b5c;
  margin-bottom: 0.4rem;
}
.filter-form .form-group .input-group input,
.filter-form .form-group .input-group select {
  background: #fdfefe;
  border: 1px solid #c7d5e0;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.filter-form .form-group .input-group input:focus,
.filter-form .form-group .input-group select:focus {
  border-color: #6baaff;
  box-shadow: 0 0 0 3px rgba(107, 170, 255, 0.2);
  outline: none;
}
.filter-form input[type=submit] {
  margin-top: 1.5rem;
  background: transparent;
  border: 1px solid #6baaff;
  color: #6baaff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 1rem 0.4rem 2.2rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-form input[type=submit]::before {
  content: "\f0b0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.95rem;
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
}
.filter-form input[type=submit]:hover {
  background-color: #6baaff;
  color: #fff;
}

.result-number {
  margin: 0.4rem 0 1rem;
  text-align: right;
  font-size: 0.8rem;
  color: #414141;
  font-weight: 300;
}
.result-number span {
  font-weight: 700;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.8rem;
}
.pagination a {
  color: #414141;
}
.pagination .disabled {
  opacity: 0.4 !important;
  pointer-events: none !important;
}

.error-wrapper {
  width: 100%;
  text-align: center;
}
.error-wrapper ul {
  background-color: #FFFFFF;
  border-radius: 10px;
  border: 0.5px solid #CCCCCC;
  margin: 1rem 0;
}
.error-wrapper ul li {
  padding: 1rem;
  border-bottom: 0.5px solid #CCCCCC;
}
.error-wrapper ul li:last-of-type {
  border-bottom: none;
}
.error-wrapper p {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8rem;
  color: #414141;
}
.error-wrapper a {
  font-weight: 700;
  color: #414141;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.info-list .info-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem;
  border: 0.5px solid #CCCCCC;
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.1882352941);
  border-radius: 10px;
  color: #414141;
  font-weight: 300;
}
.info-list .info-item a {
  color: #414141;
}
.info-list .info-item p:nth-of-type(2) {
  font-weight: 700;
}

.title {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.title a {
  font-size: 20px;
  color: #414141;
}
.title h1,
.title h2,
.title h3,
.title h4,
.title h5,
.title h6 {
  margin: 0 !important;
}

.box-info, .bi-dark, .bi-light, .bi-info, .bi-warning, .bi-danger, .bi-success, .bi-primary, .bi-default {
  max-width: 900px;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.1882352941);
  margin: 1rem auto;
  font-size: 0.95rem;
}
.box-info p, .bi-dark p, .bi-light p, .bi-info p, .bi-warning p, .bi-danger p, .bi-success p, .bi-primary p, .bi-default p {
  margin: 0;
  line-height: 1.4;
}
.box-info p a, .bi-dark p a, .bi-light p a, .bi-info p a, .bi-warning p a, .bi-danger p a, .bi-success p a, .bi-primary p a, .bi-default p a {
  color: inherit;
  text-decoration: underline;
}
.box-info p a:hover, .bi-dark p a:hover, .bi-light p a:hover, .bi-info p a:hover, .bi-warning p a:hover, .bi-danger p a:hover, .bi-success p a:hover, .bi-primary p a:hover, .bi-default p a:hover {
  text-decoration: none;
}

.bi-default {
  background-color: rgba(108, 117, 125, 0.1);
  border-left: 4px solid #6c757d;
}
.bi-default a {
  text-decoration: none !important;
  color: #6c757d !important;
  font-weight: 700 !important;
}

.bi-primary {
  background-color: rgba(13, 110, 253, 0.1);
  border-left: 4px solid #0D6EFD;
}
.bi-primary a {
  text-decoration: none !important;
  color: #0D6EFD !important;
  font-weight: 700 !important;
}

.bi-success {
  background-color: rgba(25, 135, 84, 0.1);
  border-left: 4px solid #198754;
}
.bi-success a {
  text-decoration: none !important;
  color: #198754 !important;
  font-weight: 700 !important;
}

.bi-danger {
  background-color: rgba(220, 53, 69, 0.1);
  border-left: 4px solid #dc3545;
}
.bi-danger a {
  text-decoration: none !important;
  color: #dc3545 !important;
  font-weight: 700 !important;
}

.bi-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
}
.bi-warning a {
  text-decoration: none !important;
  color: #ffc107 !important;
  font-weight: 700 !important;
}

.bi-info {
  background-color: rgba(13, 202, 240, 0.1);
  border-left: 4px solid #0dcaf0;
}
.bi-info a {
  text-decoration: none !important;
  color: #0dcaf0 !important;
  font-weight: 700 !important;
}

.bi-light {
  background-color: rgba(248, 249, 250, 0.1);
  border-left: 4px solid #f8f9fa;
}
.bi-light a {
  text-decoration: none !important;
  color: #f8f9fa !important;
  font-weight: 700 !important;
}

.bi-dark {
  background-color: rgba(33, 37, 41, 0.1);
  border-left: 4px solid #212529;
}
.bi-dark a {
  text-decoration: none !important;
  color: #212529 !important;
  font-weight: 700 !important;
}

.program-checkbox-list .pc-item {
  width: 100%;
  margin-bottom: 2rem;
}
.program-checkbox-list .pc-item h1 {
  display: block;
  width: 100%;
  padding: 0.4rem 0.75rem;
  border-left: 6px solid #41414130;
  border-top: 1px solid #41414130;
  border-right: 1px solid #41414130;
  border-bottom: 1px solid #41414130;
  margin-bottom: 1rem;
}
.program-checkbox-list .pc-item:last-of-type {
  margin-bottom: 0;
}
.program-checkbox-list .pc-item .pc-items {
  display: grid;
  grid-template-columns: 15px 1fr 40px;
  align-items: center;
  gap: 8px;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.062745098);
}
.program-checkbox-list .pc-item .pc-items:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.program-checkbox-list .pc-item .pc-items .pc-trials-wrapper {
  width: 100%;
  text-align: center;
}
.program-checkbox-list .pc-item .pc-items .pc-trials-wrapper input {
  width: 100%;
  outline: none;
  border: 1px solid #CCCCCC;
  font-weight: 700;
  color: #414141;
  font-size: 1rem;
  text-align: center;
}
.program-checkbox-list .pc-item .pc-items .pc-trials-wrapper small {
  font-size: 0.5rem;
  font-weight: 300;
  color: #414141;
}

#greetings {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
#greetings svg {
  font-size: 20px;
}
#greetings svg.night {
  color: #4B0082 !important;
}
#greetings svg.afternoon {
  color: #FF8C00 !important;
}
#greetings svg.morning {
  color: #FFD700 !important;
}

.collect-info {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.collect-info p {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #414141;
}
.collect-info p span {
  font-weight: 700;
}

table {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.9rem;
}
table svg {
  color: #414141;
  font-size: 20px;
}
table td,
table th {
  padding: 0.3rem;
  border: 1px solid #CCCCCC;
}
table thead th {
  background-color: #414141;
  color: #FFFFFF;
  border: 1px solid #414141 !important;
}
table thead th svg {
  color: #FFFFFF !important;
}
table thead td {
  background-color: rgba(65, 65, 65, 0.2);
}

.collect-box {
  overflow: auto;
  max-height: calc(100vh - 480px);
}

#result-wrapper {
  margin-top: 2rem;
}
#result-wrapper .result-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
#result-wrapper .result-title h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}
#result-wrapper .result-title a {
  color: #555;
  font-size: 1.2rem;
  margin-left: 1rem;
  transition: 0.3s;
}
#result-wrapper .result-title a:hover {
  color: #000;
}
#result-wrapper .result-item {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.2rem;
  margin-bottom: 2rem;
}
#result-wrapper .result-item .ri-title {
  margin-bottom: 1rem;
}
#result-wrapper .result-item .ri-title p {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.3rem;
  margin: 0;
}
#result-wrapper .result-item .ri-programs {
  margin-bottom: 1.8rem;
}
#result-wrapper .result-item .ri-programs h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #444;
}
#result-wrapper .result-item .ri-programs .ri-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
#result-wrapper .result-item .ri-programs .ri-stats > div {
  flex: 1;
  min-width: 130px;
  background: #fff;
  border: 1px solid #ccc;
  border-left-width: 6px;
  border-radius: 4px;
  padding: 0.8rem;
}
#result-wrapper .result-item .ri-programs .ri-stats > div:nth-child(2) {
  border-left-color: #FF6B6B;
}
#result-wrapper .result-item .ri-programs .ri-stats > div:nth-child(3) {
  border-left-color: #6BAAFF;
}
#result-wrapper .result-item .ri-programs .ri-stats > div:nth-child(4) {
  border-left-color: #FFD166;
}
#result-wrapper .result-item .ri-programs .ri-stats > div p {
  margin: 0;
  font-size: 0.95rem;
}
#result-wrapper .result-item .ri-programs .ri-stats > div p:first-child {
  color: #666;
}
#result-wrapper .result-item .ri-programs .ri-stats > div p:last-child {
  font-weight: bold;
  font-size: 1.1rem;
}
#result-wrapper .result-item .ri-programs .ri-graphic {
  height: 200px;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
#result-wrapper .result-item .ri-programs .ri-graphic:last-of-type {
  margin-bottom: 0;
}
#result-wrapper .result-item .ri-programs .ri-graphic canvas {
  width: 100% !important;
  height: 100% !important;
}
#result-wrapper .details-wrapper {
  margin-top: 2rem;
}
#result-wrapper .details-wrapper h1 {
  font-size: 1.4rem;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}
#result-wrapper .details-wrapper .dw-item {
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.8rem;
  margin-bottom: 0.6rem;
}
#result-wrapper .details-wrapper .dw-item p {
  margin: 0.2rem 0;
}

@media (max-width: 768px) {
  #result-wrapper .ri-stats {
    flex-direction: column;
  }
  #result-wrapper .ri-stats > div {
    width: 100% !important;
  }
  #result-wrapper .result-title {
    flex-direction: column;
    align-items: flex-start;
  }
  #result-wrapper .result-title h1 {
    margin-bottom: 0.5rem;
  }
  #result-wrapper .result-title a {
    margin-left: 0;
  }
}
.details-wrapper {
  margin-top: 3rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.details-wrapper h1 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
  color: #333;
}
.details-wrapper .dw-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.details-wrapper .dw-item:last-child {
  border-bottom: none;
}
.details-wrapper .dw-item p:first-child {
  font-weight: 600;
  color: #555;
}
.details-wrapper .dw-item p:last-child {
  font-size: 0.95rem;
  color: #444;
}
.details-wrapper > div:not(.dw-item) {
  font-style: italic;
  color: #999;
  margin-top: 0.5rem;
}

.collect-details {
  padding-bottom: 2rem;
}
.collect-details .cd-title {
  margin-bottom: 1.5rem;
}
.collect-details .cd-title h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.collect-details .cd-title > div p {
  margin: 0;
  color: #666;
}
.collect-details .cdc-areas {
  margin-bottom: 2rem;
}
.collect-details .cdc-areas h1 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.3rem;
}
.collect-details .cdc-areas .cdc-programs {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.collect-details .cdc-areas .cdc-programs h1 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 0.8rem;
}
.collect-details .cdc-areas .cdc-programs .cdc-graph {
  margin-bottom: 1rem;
}
.collect-details .cdc-areas .cdc-programs .cdc-graph canvas {
  width: 100% !important;
  height: 100% !important;
}
.collect-details .cdc-areas .cdc-programs .cdc-date {
  margin-bottom: 1rem;
}
.collect-details .cdc-areas .cdc-programs .cdc-date h1 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.collect-details .cdc-areas .cdc-programs .cdc-date .cdc-items {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.collect-details .cdc-areas .cdc-programs .cdc-date .cdc-items div {
  flex: 1;
  min-width: 100px;
  background: #fff;
  border: 1px solid #ccc;
  border-left-width: 6px;
  border-radius: 4px;
  padding: 0.6rem;
}
.collect-details .cdc-areas .cdc-programs .cdc-date .cdc-items div:nth-child(1) {
  border-left-color: #FF6B6B;
}
.collect-details .cdc-areas .cdc-programs .cdc-date .cdc-items div:nth-child(2) {
  border-left-color: #6BAAFF;
}
.collect-details .cdc-areas .cdc-programs .cdc-date .cdc-items div:nth-child(3) {
  border-left-color: #FFD166;
}
.collect-details .cdc-areas .cdc-programs .cdc-date .cdc-items div p {
  margin: 0;
  font-size: 0.95rem;
}
.collect-details .cdc-areas .cdc-programs .cdc-date .cdc-items div p:first-child {
  color: #666;
}
.collect-details .cdc-areas .cdc-programs .cdc-date .cdc-items div p:last-child {
  font-weight: bold;
  font-size: 1.1rem;
}
.collect-details .cd-details {
  margin-top: 2rem;
}
.collect-details .cd-details h1 {
  font-size: 1.4rem;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}
.collect-details .cd-details div {
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.8rem;
  margin-bottom: 0.6rem;
}
.collect-details .cd-details div p {
  margin: 0.2rem 0;
}

@media (max-width: 768px) {
  .cdc-items {
    flex-direction: column;
  }
  .cdc-items div {
    width: 100% !important;
  }
  .cdc-programs {
    padding: 0.8rem;
  }
  .cdc-graph {
    height: 160px;
  }
  .cd-title h1 {
    font-size: 1.5rem;
  }
}

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