.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hidden {
    display: none;
}

._overlay {
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    padding-top: 50px;
    max-height: 100vh;
    overflow-y: auto;
}

._overlay-content {
    max-width: 750px;
    width: 95%; /* Responsive width */
    margin: 0 auto;
    z-index: 20;
    background-color: #fff;
    padding: 15px 20px 20px 20px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Added shadow for better visibility */
    border-radius: 5px;
}

._overlay-content-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
    outline: none;
    gap: 30px;
}

._overlay-close-btn {
    position: absolute;
    right: 5px;
    top: -35px;
    cursor: pointer;
}