
.face-img {
  border-radius: 50%;
}

.face-normal {
  height: 100px;
  width: 100px;
  min-width: 100px;
}

.face-tiny {
  height: 50px;
  width: 50px;
  min-width: 50px;
}

.face-form {
  max-width: 370px;
  min-width: 260px;
  min-height: 240px;
}

.face-form .card {
  max-width: 370px;
  min-width: 260px;
  /* min-height: 250px; */
}

.face-form .card .card-footer-item {
    padding-right: .25rem;
    padding-left: .25rem;
}

.name-selector{
  width: 100%;
  min-width: 220px;
}

.pic-detailed {
  width: 80%;
}

.img_scanned {border: 5px solid rgb(122, 240, 122);}
.img_pending {border: 5px solid rgb(250, 208, 71);}
.img_unknown {border: 5px solid rgb(216, 216, 216);}
.card {
  width: 18rem;
  border-radius: 0.25rem;
}


ul.tags-list {
  padding-left: 0;
}

ul.tags-list li {
  display: inline-block;
  border-radius: 10px;
  background-color: #485fc7;
  color: white;
  padding: 0.3em 0.8em 0.2em 0.8em;
  line-height: 1.2em;
  margin: 2px;
  cursor: pointer;
  opacity: 0.2;
  /* text-transform: capitalize; */
}

ul.tags-list li[data-selected=true] {
  opacity: 1.0;
}

.progress-container {
  position: relative;
  width: 100%;
  text-align: start;
}

.progress-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  white-space: nowrap; /* Prevent text from wrapping */
}

progress {
  width: 100%;
  min-width: 150px; /* Ensure progress bars have enough width */
}

.usage-desc h1 {
    font-size: 1.8rem;
}

.usage-desc h2 {
  font-size: 1.4rem;
}

.usage-desc h3 {
  font-size: 1.2rem;
}


.usage-desc ul {
    list-style-type: disc;
    margin-left: 2rem;
}

.auth-container {
  max-width: 800px;
  min-width: 250px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #e1e1e1;
  border-radius: 10px;
  padding: 20px;
}

.my-indicator{
    display:none;
}
.htmx-request .my-indicator,
.htmx-request.my-indicator{
    display:inline;
}

.boxed-section {
    border: 1px solid #ccc;
    padding: 10px;
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    border-radius: 4px;
}

.boxed-section .section-title {
    position: absolute;
    top: -0.8em;
    background-color: white;
    padding: 0 10px;
}

.bool-visualization {
    display: inline-flex;
    background-color: rgb(245, 245, 245);
    padding: 2px;
    border-radius: 4px;
}
.bool-square {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.true::before {
    content: "✔";
    color: yellowgreen;
    font-size: 12px;
    font-weight: bold;
}
.false::before {
    content: "✖";
    color: #f14668;
    font-size: 12px;
}

.age-minor::before,
.age-young-adult::before,
.age-adult::before {
    content: "";
    display: inline-flex;
    height: 10px;
    width: 15px;
    margin-right: 12px;
    transform: scale(0.5) translateY(-2px);
    align-items: center;
    justify-content: left;
    vertical-align: middle;
}

.age-minor::before {
    content: url("/static/age1.svg");
}

.age-young-adult::before {
    content: url("/static/age2.svg");
}

.age-adult::before {
    content: url("/static/age3.svg");
}

.fa-file {
    transform: translate(0, 2px);
    color: rgb(103, 101, 107);
}

.same-line {
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 5px;
}

[data-tooltip]:not(.is-disabled)::after,
[data-tooltip]:not(.is-loading)::after,
[data-tooltip]:not([disabled])::after {
}

[data-tooltip]:not(.is-disabled)::before,
[data-tooltip]:not(.is-loading)::before,
[data-tooltip]:not([disabled])::before {
  color: #000000;
  background-color: #f1f1f1;
  border: 2px solid #c8c8c8;
  border-radius: 8px;
}

.action-delete-backgorund:hover {
    background-color: #f14668 !important;
    color: white !important;
}