html,
body {
  height: 100%;
}

body {
/*  display: flex;*/
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
}

.form {
  width: 100%;
  max-width: 350px;
  padding: 25px;
  margin: auto;
  border-style: solid;
  border-width: thin;
  border-radius: 15px;
  background-color: #ffffff;
    border-color: #000000;
}

h2, h3, h6 {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.property-found-heading {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.2;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  display: block;
}

.opacity-65 {
  opacity: .65;
}

.color-black {
  color: black !important;
  opacity: 1 !important;
}

h4 {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.form .checkbox {
  font-weight: 400;
}

.form .form-floating:focus-within {
  z-index: 2;
}

.form-check {
/*  text-align: left;*/
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: small;
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #999;
}

.separator:not(:empty)::before {
  margin-right: .25em;
}

.separator:not(:empty)::after {
  margin-left: .25em;
}

.footer {
  height: 40px;
}

small {
  font-size: .625em;
}

.form2 {
  width: 100%;
  max-width: 350px;
  padding: 15px;
  margin: auto;
}

.btn-circle {
  /*width: 40px;*/
  /*height: 40px;*/
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Custom CSS for wider tooltip */
.tooltip-inner {
  max-width: 300px !important; /* Adjust the width as needed */
}

.w-5 {
    width: 5%;
}

.w-95 {
    width: 95%;
}


/*Display status styles*/
.accordion-button {
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
}

.accordion-body {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
}

.small {
    font-size: 0.8rem;
}

.flashing {
    animation: flashing 1s infinite;
}

@keyframes flashing {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-item span {
    flex-grow: 1;
}

.progress-bar {
    animation-direction: reverse;
}

#connect:disabled {
    background-color: #59A65C !important;
}
