.hidden {
    display: none;
}

.api-overlay {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

.api-modal {
    background: white;
    width: 400px;
    padding: 22px;
    border-radius: 8px;

    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.api-header {
    display: flex;
    justify-content: space-between;
    font-size: 1.2em;
    font-weight: bold;
}

.api-close {
    cursor: pointer;
    font-size: 1.3em;
}

.api-content {
    margin-top: 12px;
}
