/* ============================================================
   POPUP.CSS — Save popup
============================================================ */

.save-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.popup-window {
    background: #fff;
    padding: 20px;
    width: 320px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.popup-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.popup-text {
    font-size: 14px;
    margin-bottom: 20px;
}

.popup-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.popup-buttons button {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #e6e6e6;
    cursor: pointer;
}

.popup-buttons button:hover {
    background: #dcdcdc;
}
