.modal-side-panel {
    color: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    width: 35%;
    padding: 1rem;
    overflow-y: auto;

    background: #504c4c;
    height: 90vh;
    position: relative;
}

.modal-center-panel {
    position: relative;
    display: flex;
    width: 30%;
    height: 90vh;
    align-items: center;
    justify-content: center;
}

.modal-center-panel > span {
    position: relative;
    display: flex;
    top: 25%;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
    color: lightgray;
}

.modal-footer.footer-custom {
    border-top: 0px;
    padding: 0.5rem;
}

.modal-footer.footer-custom button {
    padding: 0 0.75rem;
    font-weight: bold;
}

.modal-footer.footer-custom button:focus {
    box-shadow: none;
}

/* Left panel */
.modal-left-panel::-webkit-scrollbar {
    background-color: transparent;
}

.modal-left-panel::-webkit-scrollbar-thumb {
    background-color: gold;
    background-clip: padding-box;
    border: 3px solid rgba(0, 0, 0, 0);
    border-radius: 10px;
}

/* Right panel */
.modal-right-panel {
    display: flex;
    align-items: center;
}

.modal-carousel-container {
    position: relative;
    width: 100%;
}

.modal-carousel {
    width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    top: auto;
    bottom: 10%;
    height: fit-content;
    opacity: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    position: relative;
    width: 2.5em;
    height: 2.5em;
    filter: drop-shadow(0 5px 10px black);
}

.carousel-control-prev {
    left: 25%;
}

.carousel-control-next {
    right: 25%;
}

.carousel-control-next-icon:hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon:hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon:active {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='yellow' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon:active {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='yellow' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}
