/*
 Theme Name: web pbb theme
 Author: PD-2
 Description: A custom WordPress theme.
 Version: 1.0
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
@charset "UTF-8";

html {
  margin: 0 !important;
  padding: 0;
}

#wpadminbar {
  display: none !important;
}

body {
  width: 100vw !important;
  height: 100vh !important;
  overflow-x: hidden !important;
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  background-color: var(--bs-gray-400);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(10, 10, 10, 0);
}

header {
  height: 90px !important;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem !important;
}

content {
  background-color: var(--bs-gray-400);
}

#content {
  min-height: 50% !important;
}

.notification {
  position: fixed;
  top: 1rem;
  left: 0;
  width: 100vw;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: default !important;
}

.notification .toast {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 0;
  min-width: 50%;
  max-width: 75%;
  margin-bottom: 0.5rem;
}

.notification .toast-header {
  padding: 0.5rem 1rem !important;
  border: 0;
  border-right: 1px solid !important;
  border-radius: 0.375rem 0 0 0.375rem !important;
  font-size: 1.75rem;
  align-items: center;
}

.notification .alert {
  margin: 0;
  width: 100%;
  text-align: left;
  font-weight: 500;
  padding: 1.5rem 1rem !important;
  border: 0;
  border-radius: 0 0.375rem 0.375rem 0 !important;
}

.breadcrumb-item.active {
  cursor: default !important;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(2.5rem + calc(var(--bs-border-width) * 2)) !important;
  min-height: calc(2.5rem + calc(var(--bs-border-width) * 2)) !important;
  margin-top: 1rem !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.25rem !important;
  text-transform: capitalize !important;
}

.form-floating > label {
  color: rgba(var(--bs-body-color-rgb), 0.65) !important;
  transform: scale(0.85) translateY(-0.85rem) translateX(0.5rem) !important;
  padding: 0 0.5rem !important;
  height: auto !important;
  background-color: var(--bs-body-bg) !important;
  background-clip: padding-box !important;
  text-transform: capitalize !important;
  border-radius: var(--bs-border-radius-xl) !important;
}

.form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-select:not(:placeholder-shown) {
  padding-top: 0.75rem !important;
  padding-bottom: 0.25rem !important;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  padding-top: 0.75rem !important;
  padding-bottom: 0.25rem !important;
  box-shadow: 0 0 0 0.1rem rgba(13, 110, 253, 0.25) !important;
}

.form-floating > .form-control.is-invalid:focus,
.form-floating > .form-select.is-invalid:focus {
  box-shadow: 0 0 0 0.1rem rgba(var(--bs-danger-rgb), 0.25) !important;
}

.form-floating > .form-control.is-valid:focus,
.form-floating > .form-select.is-valid:focus {
  box-shadow: 0 0 0 0.1rem rgba(var(--bs-success-rgb), 0.25) !important;
}

.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-select ~ label::after {
  background-color: transparent !important;
}

.form-floating > .select-options-content {
  position: absolute;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: white;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10001;
  margin-top: 0.5rem;
}

.form-floating > .select-options-content > .dynamic-select-searchbar {
  width: calc(100% - 16px) !important;
  padding: 8px;
  margin: 8px;
  border: 0.5px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.form-floating > .select-options-content > div {
  padding: 8px;
  cursor: pointer;
}

.form-floating > .select-options-content > div:hover {
  background: #f0f0f0;
}
