/* Styles for the modal */
.modal {
    font-family: "Arial", Sans-serif;
    background-color: rgba(0, 0, 0, 0.5);
}

/* .lp-modal-content::-webkit-scrollbar {
    display: none;
} */

.lp-modal-content {
    display: flex;
    flex-direction: column;
    font-family: "Arial", Sans-serif;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 50%;
    width: 100%;
    border: 10px solid rgb(60, 60, 60);
    border-radius: 50px;
    padding: 6rem;
    text-align: center;
    border-color: #646464;
    max-height: 80vh;
    /* overflow: auto; */
}

/* Styles for the buttons */
button#modal-ok {
    font-family: "Arial", Sans-serif;
    background-color: var(--e-global-color-accent);
    color: white;
    padding: 5px 35px;
    min-width: 120px;
    border: 1px solid var(--e-global-color-accent);
}

button#modal-cancel {
    background-color: transparent;
    color: var(--e-global-color-accent);
    padding: 5px 35px;
    min-width: 120px;
    border: 1px solid var(--e-global-color-accent);
}

button#modal-ok:hover {
    background-color: #97d8e7;
    color: white;
}

button#modal-cancel:hover {
    background-color: #65cbe0;
    color: white;
}

.lp-message-box {
    margin-bottom: 3rem;
    border-bottom: 1px solid rgb(60, 60, 60);
    padding-bottom: 3rem;
    /* max-height: 50vh; */
    overflow: auto;
    /* overflow-x: hidden; */
    color: rgb(60, 60, 60);
}

.lp-confirm-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Tablet-specific styles (768px to 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .lp-modal-content {
        max-width: 90%;
        padding: 2rem;
    }
}

/* Mobile-specific styles (up to 767px) */
@media screen and (max-width: 767px) {
    .lp-modal-content {
        max-width: 90%;
        padding: 2rem;
    }
}

/*
 *  STYLE 3
 */

#style-3::-webkit-scrollbar-track {
  /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
  background-color: #f5f5f5;
}

#style-3::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

#style-3::-webkit-scrollbar-thumb {
  background-color: #61677A;
}
