/* Root Variables -> Start */

:root {
  --primary-blue-color: #0072A3;
  --background-blue-color: #0072A3;
  --heading-color: #110D08;
  --text-color: #3A3A3A;
}

.landing-container {
  background-color: var(--background-blue-color);
  height: 100vh !important;
}

.landing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.landing-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.landing-title {
  color: white;
  font-size: 2.5em;
}

.landing-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 10vh;
}

.landing-register-button {
  color: var(--background-blue-color);
  background-color: white;
  padding: 0.4em;
  border: 1.5px solid white;
  border-radius: 50px;
  width: 350px !important;
  text-align: center;
  margin-bottom: 1em;
  font-size: 1.25em;
  font-weight: bold;
}

.landing-login-button {
  color: white;
  padding: 0.4em;
  border: 1px solid black;
  border-radius: 50px;
  width: 350px !important;
  text-align: center;
  background-color: black;
  font-size: 1.25em;
  font-weight: bold;
}

.landing-buttons a:hover {
  color: var(--background-blue-color)
}

/* Root Variables -> End */
/* Tournament Select Screen -> Start */

.select-tournament-container .content {
  padding-top: 3em;
}

.select-tournament-container .top-row {
  display: flex;
  justify-content: space-between;
  padding-right: 1em;
}

.select-tournaments {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: center;
}

.select-tournament-container .card-container {
  cursor: pointer;
}

.select-tournament-container .card-container:hover {
  transform: translateY(-3px);
}

.select-tournament-container .card-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select-tournament-container .card-image-container {
  height: 145px;
}

.select-tournament-container .card-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: black;
}

@media screen and (max-width: 768px) {
  .select-tournaments {
    grid-template-columns: 1fr;
  }
}

/* Tournament Select Screen -> End */

/* Table -> Start */

.table-search-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table-filter-row {
  display: flex;
  width: 800px;
}

.table-filter-row button {
  height: 35px;
}

@media screen and (max-width: 768px) {
  .table-filter-row {
    flex-direction: column;
    width: 330px;
  }
}

.table-filter-row select {
  margin-right: 1em;
}

#list-all-table a {
  text-decoration: none;
}

#list-all-table {
  overflow: auto;
}

.sponsor-logo {
  max-width: 100px !important;
}

/* Table -> End */

/* Form -> Start */

.custom-vertical-form {
  display: flex;
  flex-direction: column;
  margin-top: 1em;
}

.custom-vertical-form input:not([type="checkbox"]) {
  width: 100%;
  padding: 15px;
  border: 0;
  background-color: rgba(211, 211, 211, 0.36);
  font-size: 0.8rem;
  margin-top: 10px;
  font-family: inherit;
  border-radius: 4px;
}

.custom-vertical-form input[type="checkbox"] {
  margin-bottom: 1em;
}

.custom-vertical-form label {
  margin-bottom: 0.5em;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 10px;
  display: block;
  padding-left: 0;
  color: #054277;
  
}

textarea {
  visibility: visible !important;
}

/* Form -> End */

/* Details Page -> Start */

.details-container {
  padding-top: 2em;
}

.details-row {
  display: flex;
  padding-bottom: 1em;
}

.details-row h4 {
  margin-top: 2px;
}

.details-row > div {
  margin-right: 1em;
}

/* Details Page -> End */

/* Role Form -> Start */

.role-form #id_description {
  margin-bottom: 1em;
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.49;
  color: var(--phoenix-gray-900);
  background-color: var(--phoenix-input-bg);
  background-clip: padding-box;
  border: 1px solid var(--phoenix-input-border-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
  -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  margin-bottom: 1em;
}

.role-form #id_needs_accreditation {
  margin-left: 0.5em;
}

.role-form textarea,
.request-form textarea {
  margin-bottom: 1em;
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.49;
  color: var(--phoenix-gray-900);
  background-color: var(--phoenix-input-bg);
  background-clip: padding-box;
  border: 1px solid var(--phoenix-input-border-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
  -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  margin-bottom: 1em;
}

.role-form select,
.request-form select {
  margin-bottom: 1em;
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.49;
  color: var(--phoenix-gray-900);
  background-color: var(--phoenix-input-bg);
  background-clip: padding-box;
  border: 1px solid var(--phoenix-input-border-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
  -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  margin-bottom: 1em;
}

/* Role Form -> End */

/* Tournament Request Form -> Start */

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.action-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1em;
}

.request-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20% !important;
}

.request-form p {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.request-form p textarea {
  margin-bottom: 1em;
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.49;
  color: var(--phoenix-gray-900);
  background-color: var(--phoenix-input-bg);
  background-clip: padding-box;
  border: 1px solid var(--phoenix-input-border-color);
  margin-bottom: 1em;
}

.request-form p .helptext {
  font-size: 12px;
}

.request-form p:nth-child(7) {
  flex-direction: row;
  align-items: center;
}

.request-form p:nth-child(7) label {
  margin-right: 1em;
}

.request-form p:nth-child(7) input {
  margin-top: 6px;
}

/* Tournament Request Form -> End */

/* Participant -> Start */

.customContainer {
  max-width: 768px;
  margin: 0 auto;
}

/* Participant -> End */

/* Tournament Details -> Start */

.tournament-description {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.carousel-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Tournament Details -> End */

/* Practice Time Slots -> Start */

.table-container {
  width: 100%;
  overflow-x: auto;
}

.table-container table {
  table-layout: fixed;
  width: auto;
}

.table-container td,
.table-container th {
  white-space: nowrap;
  padding: 0 35px; /* Adjust the padding as needed */
}

/* Practice Time Slots -> End */

/* Bottom Navbar -> Start */

.bottom-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f8f8f8;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  z-index: 100;
}

.bottom-navbar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-decoration: none;
  color: #888;
  font-size: 14px;
}

.bottom-navbar a.active {
  color: #333;
  font-weight: bold;
}

.bottom-navbar a i {
  margin-bottom: 5px;
}

a:active,
a:hover {
  text-decoration: none !important;
}

/* Bottom Navbar -> End */

/* Practice Courts Page -> Start */

.court-filters-row {
  display: flex;
  align-items: center !important;
}

.court-filter-wrapper {
  display: flex;
  align-items: center;
  font-size: 1.3em;
  color: var(--primary-blue-color);
  cursor: pointer;
  margin-left: 1.5em;
}

#filter-text {
  font-weight: bold;
  margin-left: 0.5em
}

#dropdown-content {
  display: none;
}

.filters-dropdown {
  position: absolute;
  background-color: #e3e6ed;
  min-width: 160px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  z-index: 100;
  right: 50px;
  top: 150px;
  border-radius: 10px;
}

.admin-filters-dropdown {
  position: absolute;
  background-color: #e3e6ed;
  min-width: 160px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  z-index: 100;
  right: 50px;
  top: 250px;
  border-radius: 10px;
}

.filters-dropdown a,
.admin-filters-dropdown a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.filters-dropdown a:hover,
.admin-filters-dropdown a:hover {
  background-color: #f1f1f1;
}

.filters-dropdown:hover #dropdown-content {
  display: block;
}

.active-filter {
  padding: 1em !important;
  margin-left: 0.5em !important;
  user-select: none;
}

@media screen and (max-width: 768px) {
  .court-filter-wrapper {
    margin-left: 0 !important;
  }

  .filters-dropdown,
  .admin-filters-dropdown {
    right: 0;
  }
}

.courts-top-row {
  justify-content: space-between;
  align-items: center;
}

.courts-top-row .court-name {
  text-align: center;
}

.courts-top-row .court-name span {
  font-size: 1.4em;
  font-weight: bold;
  color: var(--primary-blue-color);
}

.courts-arrow {
  cursor: pointer;
}

.court-details-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.court-details {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2em;
}

.court-details .court-details-left,
.court-details .court-details-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.box-time {
  color: black;
}

.box-name {
  color: gray;
}

.down-arrow {
  display: flex;
  justify-content: flex-end;
  margin-right: 15px;
  margin-top: -20px;
  cursor: pointer;
}

.circles-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}

.circles-wrapper > div {
  margin-right: 1em;
}

.green-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: green;
  margin-right: 5px;
  border: 1px solid black;
}

.red-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  margin-right: 5px;
  border: 1px solid black;
}

.search-circle {
  margin-right: 5px;
}

.court-details-collapse {
  width: 100%;
}

.box-title {
  font-size: 1em;
  font-weight: bold;
  line-height: 2em;
}

.user-icon {
  color: var(--primary-blue-color);
  margin-right: 10px;
}

.request-court-btn {
  color: var(--primary-blue-color) !important;
  font-weight: bold;
}

.request-priority {
  margin-left: -120px;
  margin-top: 10px;
}

.court-card {
  width: 100%;
  margin-bottom: 2em;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 1em;
  background-color: white;
  border-radius: 6px;
}

/* Practice Courts Page -> End */

/* Edit Profile -> Start */

.edit-profile-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.edit-profile-form p {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.edit-profile-form p textarea {
  margin-bottom: 1em;
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.49;
  color: var(--phoenix-gray-900);
  background-color: var(--phoenix-input-bg);
  background-clip: padding-box;
  border: 1px solid var(--phoenix-input-border-color);
  margin-bottom: 1em;
}

.edit-profile-form p .helptext {
  font-size: 12px;
}

.edit-profile-form input {
  margin-bottom: 1em;
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.49;
  color: var(--phoenix-gray-900);
  background-color: var(--phoenix-input-bg);
  background-clip: padding-box;
  border: 1px solid var(--phoenix-input-border-color);
  margin-bottom: 1em;
}

.edit-profile-form label {
  margin-bottom: 0.5em;
}

/* select */

.edit-profile-form select {
  margin-bottom: 1em;
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.49;
  color: var(--phoenix-gray-900);
  background-color: var(--phoenix-input-bg);
  background-clip: padding-box;
  border: 1px solid var(--phoenix-input-border-color);
  margin-bottom: 1em;
}

.edit-profile-form select option {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.49;
  color: var(--phoenix-gray-900);
  background-color: var(--phoenix-input-bg);
  background-clip: padding-box;
  border: 1px solid var(--phoenix-input-border-color);
}

.edit-profile-form button {
  margin-top: 1em;
  margin-bottom: 1em;
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.49;
  color: white;
  background-color: var(--primary-blue-color);
  background-clip: padding-box;
  border: 1px solid var(--primary-blue-color);
  margin-bottom: 1em;
}

/* Edit Profile -> End */

/* Content -> Start */

.content img {
  width: 100%;
  height: auto;
}

/* Content -> End */

/* Participant Bookings -> Start */

.bookings-dropdown-wrapper {
  width: 100%;
}

.bookings-dropdown {
  width: 100%;
}

.bookings-dropdown-menu {
  width: 100%;
}

.bookings-dropdown-menu a {
  text-align: center;
}

.booking-box {
  margin: 1em 0;
  padding-bottom: 1em;
  border-bottom: 1px solid lightgray;
}

.box-badge {
  border-radius: 20px !important;
  padding: 7px !important;
  font-size: 10px !important;
  text-transform: none !important;
}

.box-top {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.box-top-row {
  margin-top: 1em;
}

.box-top-right {
  display: flex;
  align-items: center;
}

.box-top-right i {
  margin-right: 10px;
  cursor: pointer;
}

.cancel-option {
  cursor: pointer;
}

.box-date {
  font-weight: bold;
}

.box-court {
  margin-top: -10px;
  color: #85878c;
}

.booking-box-title {
  letter-spacing: 2px;
  color: #4c4f57;
  margin-bottom: 8px;
}

.dropdown-toggle {
  cursor: pointer;
}

.cancel-dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 5px;
  border-radius: 10px;
  margin-top: 70px;
  z-index: 1;
  right: 0;
  text-align: right;
  list-style: none;
}

.cancel-dropdown-menu li {
  cursor: pointer;
  padding: 8px 20px;
}

.cancel-dropdown-menu li:hover {
  background-color: #ddd;
}

/* Participant Bookings -> End */

/* Register Profile Form -> Start */

.register-profile-form label {
  padding-left: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--phoenix-gray-700);
}

.register-profile-form p {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.register-profile-form input,
#id_country {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.49;
  color: var(--phoenix-gray-900);
  background-color: var(--phoenix-input-bg);
  background-clip: padding-box;
  border: 1px solid var(--phoenix-input-border-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
  -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}

/* Register Profile Form -> End */

/* Global Alerts -> Start */
.alert-error {
  color: #b81800 !important;
  background-color: #ffedeb !important;
  border-color: #ffedeb !important;
}
/* Global Alerts -> End */

/* Upgrade Link Content -> Start */

.tox-promotion {
  display: none !important;
}

/* Upgrade Link Content -> End */

/* Custom AllAuth Form -> Start */

.auth-form {
  display: flex;
  flex-direction: column;
  margin-top: 1em;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="date"],
.auth-form input[type="number"] {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  line-height: 1.49;
  color: rgb(41, 41, 46);
  background-color: white;
  background-clip: padding-box;
  appearance: none;
  border-radius: 0.375rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
  margin-bottom: 1em;
  border: 1px solid rgb(221, 221, 221);
  font-size: 14px;
  height: 40.5px;
  font-weight: 400;
}

.auth-form label {
  margin-bottom: 0.5em;
}

#existing_email {
  background-color: lightgray;
}

.form-title {
  font-family: 'Inter', sans-serif;
  color: rgb(43, 66, 96);
}

/* Custom AllAuth Form -> End */


/* Flat pickr -> Start */

/* Override default Flatpickr styles */
.flatpickr-calendar {
  background-color: #f7f7f7 !important;
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  color: #333 !important;
}

.flatpickr-month {
  margin-top: 10px;
}

.flatpickr-day {
  border-radius: 50% !important;
}

.flatpickr-day.today:not(.disabled) {
  background-color: #3498db !important;
  color: #fff !important;
}

.flatpickr-day.selected:not(.disabled) {
  background-color: #f39c12 !important;
  color: #fff !important;
}

.flatpickr-monthDropdown-months,
.flatpickr-yearDropdown-years {
  background-color: #f7f7f7 !important;
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  color: #333 !important;
  padding: 5px 10px !important;
  font-size: 14px !important;
}

.flatpickr-current-month {
  font-weight: bold !important;
  color: #333 !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
  color: #666 !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  color: #333 !important;
}

.flatpickr-calendar:after {
  content: "" !important;
  display: table !important;
  clear: both !important;
}

.flatpickr-time {
  background-color: #f7f7f7 !important;
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  color: #333 !important;
}

.flatpickr-time-separator {
  color: #333 !important;
}

.flatpickr-am-pm {
  color: #333 !important;
}

.flatpickr-input {
  display: block !important;
  width: 100% !important;
  padding: 10px !important;
  font-size: 14px !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease-in-out !important;
}

.flatpickr-input:focus {
  outline: none !important;
  border-color: #3498db !important;
}

/* Flat pickr -> End */


/* Admin Requests All -> Start */

.filter-icon-wrapper {
  display: flex;
  align-items: flex-start;
}

.filter-icon-wrapper .red-circle {
  margin-left: 5px;
  border: none;
}

/* Admin Requests All -> End */


/* Form -> Start */

.form-new-button {
  width: 200px !important;
  margin-bottom: 1em;
  margin-left: 1em;
}

/* Form -> End */

/* Documents All -> Start */

.document-table-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.document-table-actions a {
  color: white;
  background-color: #143F79;
  padding: 5px;
  border-radius: 20px;
  width: 30px;
  height: 30px;
  text-align: center;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.document-table-actions a:hover {
  color: #143F79;
  background-color: #f8f8f8;
}

/* Documents All -> End */

/* Customer Form -> Start */

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;  
}

.customer-form p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 10px;
}

.customer-form input, .customer-form select , .customer-form textarea {
  /* copy the input styles from the form-control class */
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.49;
  color: var(--phoenix-gray-900);
  background-color: var(--phoenix-input-bg);
  background-clip: padding-box;
  border: 1px solid var(--phoenix-input-border-color);
  border-radius: 0.375rem;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
  -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  position: relative;
}

.customer-form {
  position: relative;
  width: 600px;
}

.customer-form select::after {
  content: "\25BC"; /* Unicode character for down arrow */
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-btns-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1em;
}

@media screen and (max-width: 768px){
  .customer-form {
    width: 100%;
  }
}

.title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1em;
}

/* i need table to have design of bootstrap responsive table with hover effect and border radius */

table {
  margin-top: 1em;
}

.dt-length {
  display: flex;
  align-items: center;
  column-gap: 1em;
}

.dt-search {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 1em;
}


.btn-primary {
  background-color: #004179 !important;
  border-color: #004179 !important;
  color: #FFF !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #003260 !important;
  border-color: #003260 !important;
  color: #FFF !important;
}

.btn-outline-primary {
  color: #004179 !important;
  border-color: #004179 !important;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: #004179 !important;
  border-color: #004179 !important;
  color: #FFF !important;
}

/* Customer Form -> End */

/* Dashboard -> Start */

.title {
  font-size: 1.4em;
  margin-top: 12px;
  color: #054277;
  font-weight: 500;
}

.dashboard-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 6px #05427737;
}

/* Dashboard -> End */

/* Download Center -> Start */

#downloadCenterTable td {
  padding: 1em;
}

/* Download Center -> End */

/* Headings -> Start */

h2 {
  color: var(--heading-color);
  font-weight: 600 !important;
}

h3,
h4,
h5,
h6 {
  font-weight: 500 !important;
}

h1,h2,h3,h4,h5,h6 {
  color: #3C5F8A !important;
}

/* Headings -> End */

/* Changes -> Start */

.solid-btn {
  background-color: #d0103e;
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  outline: none;
  border: none;
  padding: 10px 0;
  border-radius: 100px;
  font-size: 1em;
  font-weight: bold;
  transition: padding-left 0.3s;
}

/* on hover, move the content of the button to the right */
.solid-btn:hover {
  padding-left: 20px;
  padding-right: 0;
}

.document-btn {
  background-color: #d0103e;
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  outline: none;
  border: none;
  padding: 10px 0px;
  border-radius: 100px;
  font-size: 1em;
  font-weight: bold;
  transition: padding-left 0.3s;
}

/* on hover, move the content of the button to the right */
.document-btn:hover {
  padding-left: 20px;
  padding-right: 0;
  color: white;
}


.info-btn {
  background-color: #d0103e;
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  outline: none;
  border: none;
  padding: 10px 0;
  border-radius: 100px;
  font-size: 0.9em;
  font-weight: bold;
  transition: padding-left 0.3s;
}

/* on hover, move the content of the button to the right */
.info-btn:hover {
  padding-left: 20px;
  padding-right: 0;
}

.access-btn {
  border: 1px solid #083d66;
  color: #083d66;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  outline: none;
  border: none;
  padding: 10px 0;
  border-radius: 100px;
  font-size: 0.9em;
  font-weight: bold;
  transition: padding-left 0.3s;
}

/* on hover, move the content of the button to the right */
.access-btn:hover {
  padding-left: 20px;
  padding-right: 0;
}

.form-div {
  background-color: rgba(0, 0, 0, 0);
  background-image: radial-gradient(circle, rgba(45, 141, 223, 0) 0%, rgba(7, 93, 167, 0.18) 100%);
  border-radius: 10px;
}

.btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.btns .success-btn {
  width: 220px;
  border: 1px solid darkgreen;
  background-color: darkgreen;
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  outline: none;
  border: none;
  padding: 10px 0;
  border-radius: 100px;
  font-size: 0.9em;
  font-weight: bold;
  transition: padding-left 0.3s;
}

.btns .success-btn:hover {
  padding-left: 20px;
  padding-right: 0;
}


.form-success-btn {
  width: 220px;
  border: 1px solid darkgreen;
  background-color: darkgreen;
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  outline: none;
  border: none;
  padding: 10px 0;
  border-radius: 100px;
  font-size: 0.9em;
  font-weight: bold;
  transition: padding-left 0.3s;
}

.form-success-btn:hover {
  padding-left: 20px;
  padding-right: 0;
  color: white;
}

.form-error-btn {
  width: 220px;
  border: 1px solid #d0103e;
  background-color: #d0103e;
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  outline: none;
  border: none;
  padding: 10px 0;
  border-radius: 100px;
  font-size: 0.9em;
  font-weight: bold;
  transition: padding-left 0.3s;
}

.form-error-btn:hover {
  padding-left: 20px;
  padding-right: 0;
  color: white;
}

table a {
  color: #3C5F8A;
  font-weight: bold;
}

.breadcrumb-item a {
  color: #054277;
}

/* Changes -> End */