html {
    font-size: 14px;
}

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


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

body {
    margin-bottom: 60px;
}

.canvas-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 15px;
    color: white;
    font-size: 15px;
    background-color: #E73744;
    border: 1.5px solid;
    border-width: 2px;
    border-color: white;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}

.canvas-button {
    background: none;
    width: 25px;
    height: 25px;
    border: none;
    padding: 0;
    margin-left: auto;
    cursor: pointer;
}

    .canvas-button svg {
        display: block;
        max-width: 70px;
        height: auto;
    }

.canvas-li:hover {
    background-color: white;
    color: #E73744;
}

    .canvas-li:hover .canvas-button svg {
        fill: #E73744;
    }

.nav-li {
    background-color: #f9fafb;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}

    .nav-li a.nav-link {
        color: black;
        text-decoration: none;
        display: block;
        padding: 10px;
    }

    .nav-li:hover {
        background-color: #E73743;
    }

        .nav-li:hover a {
            color: white;
        }

.partial-li {
    background-color: #f9fafb;
    border: 1.5px solid transparent;
    border-radius: 5px;
    margin-bottom: 5px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
    transition: border-color 0.3s ease-in-out;
    cursor: pointer;
}

    .partial-li:hover {
        color: #E73743;
        border-color: #E73743;
        border-width: 1.5px;
    }

.canvas-card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
    width: 352px
}

.required::after {
    content: "*";
    color: orangered;
}

.text-li {
    color: black;
    font-size: 15px;
    font-weight: 430;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}

    .text-li:hover {
        color: #E73744;
    }

.form-floating {
    margin-bottom: 10px;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    flex: 1;
}

.star-button {
    background: none;
    width: 25px;
    height: 25px;
    border: none;
    padding: 0;
    margin-left: auto;
    cursor: pointer;
}

    .star-button svg {
        display: block;
        max-width: 70px;
        height: auto;
    }

.fixed-title {
    position: fixed !important; /* Fixes the element to the top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 10; /* High z-index to keep above other content */
    background-color: white !important; /* Light background color */
    border-bottom: 1px solid #e9ecef; /* 1px solid border at the top with light subtle gray color */
    margin-top: 4rem !important; /* Top margin */
    padding-right: 1rem !important; /* Vertical padding (top and bottom) */
    padding-top: 0rem !important; /* Vertical padding (top and bottom) */
    padding-bottom: 0rem !important;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

.ql-editor {
    background-color: white !important;
}