html, body {
    margin: 0;
    background: url('/img/paper-background.jpg');
    background-size: cover;
    background-color: hsla(0, 0%, 100%, 0.79) !important;
    background-blend-mode: color; 
    min-height: 100dvh !important;
    max-height: max-content  !important;
}
.full-height {
    min-height: 100dvh;
}
.custom-height {
    min-height: 88dvh;
}
.rounded-box {
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: none;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.container-padding {
    padding: 2rem;
}
.equal-height {
    display: flex;
    flex-wrap: wrap;
}
@media screen and (min-width: 800px) {
    .equal-height > [class*='col-'] {
        display: flex;
        flex-direction: column;
        max-height: 88dvh;
    }

    .w-100-dynamic {
        width: 100% !important;
    }
}
@media screen and (max-width: 800px) {
    .equal-height > [class*='col-'] {
        padding-bottom: 3dvh;
    }
}
.flex-fill {
    flex: 1;
}
.dynamic-width {
    max-width: 1280px;
}
.nav-logo-link {
    color: #000;
    text-decoration: none;
}
.nav-logo-link:hover {
    color: #000;
    text-decoration: none;
}

.w-100-dynamic {
    width: 130% !important;
}

/* New styles for quote add button and modal */
.add-quote-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    font-size: 24px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.user-search {
    position: relative;
}
.user-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}
.user-search-results div {
    padding: 10px;
    cursor: pointer;
}
.user-search-results div:hover {
    background-color: #f1f1f1;
}
.selected-users {
    margin-top: 10px;
}
.selected-user {
    display: inline-block;
    background-color: #e9ecef;
    padding: 5px 10px;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 3px;
}
.remove-user {
    cursor: pointer;
    margin-left: 5px;
}