.a-popup {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000080;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.a-popup-content {
    background-color: white;
    border-radius: 2px;
    min-width: 100px;
    min-height: 100px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    overflow-x: hidden;
    position: absolute;
    top: 32px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
    display: flex;
    flex-direction: column;
}

.a-popup-header {
    font-weight: bold;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 16px;
    border-radius: 2px 2px 0 0;
    color: #ffffff;
    background-color: #2196f3;
    border-color: #2196f3;
    position: sticky;
    top: 0;
    z-index: 1;
    min-height: 32px;
}

.a-popup-header-title {
    font-size: 14px;
}

.a-popup-header-close {
    font-size: 14px;
    text-align: center;
    color: #ffffff80;
    cursor: pointer;
}

.a-popup-header-close:hover {
    color: #ffffff;
}

.a-popup-body {
    margin: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.a-popup-body-message {
    margin-bottom: 8px;
}

.a-popup-body-buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}