div {
    font-family: "Thasadith", sans-serif;
    font-size: 1em;
}

div.heading4 {
    font-family: 'Thasadith', serif;
    font-weight: 1000;
    color: #c50d25;
    background-color: inherent;
    font-size: 30px;
    line-height: 48px;
    padding: 0px;
    
    text-align: left;
}
.truncate-text{
    max-width: 100%; /* Allow the div to expand with the page */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines to show */
    -webkit-box-orient: vertical;

    line-height: 1.2; /* Adjust line height if needed */
    max-height: 2.4em; /* Adjust max height to match line height * number of lines */
    white-space: normal; /* Ensure wrapping behavior */
}
.bag-icon:hover {
    background-color: #eccaca;
}

.vm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* ensure it’s above everything else */
}

.vm-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(72, 61, 139, 0.8); /* DarkSlateBlue w/ transparency */
}

.vm-modal-content {
    position: relative;
    max-width: 500px;
    width: 90%;
    margin: 100px auto; /* centers horizontally */
    background-color: #2b2b2b; /* or use #111 / #333, etc. */
    padding: 2rem;
    border-radius: 8px;
    color: #fff; /* text color on dark background */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.vm-modal-title {
    margin-bottom: 1.5rem;
    text-align: center;
}

.vm-modal-form .form-group {
    margin-bottom: 1rem;
}

.vm-modal-divider {
    text-align: center;
    margin: 1rem 0;
    font-weight: bold;
}

.vm-modal-form .form-control {
    background-color: #fff;
    color: #000;
}

@media (max-width: 576px) {
    .vm-modal-content {
        margin: 50px auto; /* reduce top margin for smaller screens */
        width: 95%;
        padding: 1.5rem;
    }
}