html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}




















:root {
    --h-color-neutral-0: #2d2d2d;
}

/* Modal Backdrop */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

    .modal-backdrop.active {
        display: block;
    }

#tags-dialog {
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    left: 50%;
    max-height: calc(100% - 16px);
    max-width: calc(100% - 32px);
    overflow: hidden;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    background-color: #2d2d2d;
}

    #tags-dialog.active {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, -50%) scale(1);
    }

.dialog-header {
    display: flex;
    padding: 16px 32px;
    border-bottom: 1px solid #716f6f;
    background-color: #2d2d2d;
    align-items: center;
}

.dialog-search-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: stretch;
    flex: 1;
    height: 32px;
}

.close-btn {
    background: none;
    border: none;
    color: #d7d7d7;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s;
}

    .close-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.open-dialog-btn {
    padding: 10px 20px;
    background-color: #43b7db;
    color: #1b1b1b;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .open-dialog-btn:hover {
        background-color: #2fa3c7;
    }

.tags-dialog-container {
    background: var(--h-color-neutral-0);
    display: flex;
    min-height: 1px;
    padding: 32px;
    color: #d7d7d7;
}

.row {
    display: flex;
    overflow-y: scroll;
}

.column {
    min-width: 400px;
}

.tags-menu-items li {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.tags-menu-item-title-container-title {
    font-weight: bold;
    font-size: 1.2rem;
}

.tags-menu-item-title-container-subtitle {
    color: #b7b7b7;
}

.tag-name {
    font-weight: bold;
    text-decoration: none;
    color: #43b7db;
    font-size: 1.1rem;
}

.tags-menu-item-title-container {
    /* border-bottom: 1px solid #716f6f; */
}