.zn-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.zn-modal {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: zn-modal-in 0.3s ease-out;
}

@keyframes zn-modal-in {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.zn-modal h3 {
    margin-top: 0;
    color: #007d19;
}

.zn-modal p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

.zn-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.zn-btn {
    padding: 10px 25px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
    font-size: 14px;
}

.zn-btn-cancel {
    background: #f0f0f0;
    color: #333;
}

.zn-btn-confirm {
    background: #007d19;
    color: white;
}

.zn-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.zn-btn-confirm:hover {
    background: #006414;
}
