.line {
    background-color: rgba(112, 128, 144, 0.26);
    height: 1px;
    width: 100%;
}

.faint {
    color: slategray;
}

.faintx2 {
    color: #aeb2bd9e;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex_spaced {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex_column {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.ls-1 {
    letter-spacing: 0.5px;
    /* background: red; */
}

.ls-2 {
    letter-spacing: 1px;
}

.noWrap {
    white-space: nowrap;
}

.noWrap {
    white-space: nowrap;
}

.flex_left {
    display: flex;
    align-items: center;
}

.pageAddButton {
    position: absolute;
    bottom: 50px;
    right: 26px;
    z-index: 10;
    cursor: pointer;
}

.flex_right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.relative {
    position: relative;
}

.flex_column {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pointer {
    cursor: pointer
}

.small-1 {
    font-size: 14px;
}

.smaller {
    font-size: 13px;
}

.small-2 {
    font-size: 15px;
}

.small-3 {
    font-size: 18px;
}

.small {
    font-size: 11px;
}

.tiny {
    font-size: 8px;
}


.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    width: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    width: 100%;
}

.remove-scrollbar::-webkit-scrollbar {
    display: none;
}

.card-bg {
    background-color: rgba(255, 255, 255, 0.043);
}

.shadow-1 {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.elevated-shadow {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.shadow-2 {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    /* Ensures it’s on top of other content */
}

.underline {
    text-decoration: underline;
}

.line-offset {
    text-underline-offset: 3px
}

.no_transform {
    text-transform: none;
}

.upper {
    text-transform: uppercase;
}

.lower {
    text-transform: lowercase;
}

.caps {
    text-transform: capitalize;
}

.overflowX {
    overflow-x: auto;
}

.overflow::-webkit-scrollbar {
    display: none;
}

.active-link {
    transform: scale(1.04);
    /* margin-right: 90px; */
    border-radius: 4px;
    font-weight: 600;
    transition: 1s ease-in;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.faint-border {
    border: 1px solid;
    border-color: rgba(255, 255, 255, 0.102);
}

.faint-bg {
    background-color: #f8f8f8;
}

.general-bg {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.102)
}

.centralize_page {
    height: 85dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}



.floatingPageButton {
    width: 55px;
    height: 55px;
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 10;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.remove-scrollbar::-webkit-scrollbar{
   display: none;
}

.fullHeight{
    height: 100dvh;
}
.centered_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.black-placeholder::placeholder {
    color: black;
  }
  