/* checkmark-popup.css */
.checkmark-popup {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
    animation: fadeInDown 0.5s ease-out forwards;
    z-index: 1000;
}

.checkmark-popup-success {
    background-color: #57e178;
    color: #155724;
}

.checkmark-popup-error {
    background-color: #e15757;
    color: #571515;
}

.checkmark {
    width: 56px;
    height: 56px;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: checkmarkAnim 0.6s ease-in-out forwards;
}

@keyframes checkmarkAnim {
    0% { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes fadeOutUp {
    from { opacity: 1; transform: translateX(-50%) translateY(0); }
    to { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}

.checkmark-popup h3 {
    margin: 0;
    font-size: 18px;
}