.yodel-trap {
    transition: all 0.3s;
    display: none;
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    background: black;
}

.yodel-trap.active {
    opacity: 0.6;
}

.yodel-modal {
    opacity: 1;
    pointer-events: all;
    width: calc(100% - 20px);
    margin: 0 10px;
    max-width: 600px;
    transition: all 0.3s;
    background-color: white;
    border-radius: 12px;
    transform: translateY(-30px);
}

.yodel-modal-content {
    margin: 0 20px;
}

.yodel-modal.active {
    transform: translateY(0);
}

.yodel-qa-header {
    font-size: 18px;
    margin: 8px 0 4px;
}

.yodel-qa-answer {
    margin: 0 0 12px;
}

.yodel-modal-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding-left: 20px;
    padding-right: 8px;
}

.yodel-modal-header-center {
    text-align: center;
}

.yodel-modal-border {
    border-bottom: 1px solid #ddd;
    margin: 0 20px;
}

.yodel-modal-footer {
    display: flex;
    justify-content: center;
}

.btn-close {
    position: absolute;
    right: 16px;
    outline: none;
    background: transparent;
    border: none;
    width: 42px;
    height: 42px;
    display:flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0;
    transition: color 0.2s;
}
.btn-close:hover {
    opacity: 0.7;
}

.btn-close svg {
    width: 20px;
    height: 20px;
}