.modal {
    position: fixed;
    top: var(--s-0);
    left: var(--s-0);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-modal-backdrop);
}

.modal-content {
    background: var(--bg-primary);
    padding: var(--s-5);
    width: 80%;
    max-height: 80%;
    overflow-y: auto;
    border-radius: 10px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: var(--s-5);
    font-size: var(--t-display-md);
    cursor: pointer;
}
