/* Confirm Modal Styles */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 6000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.confirm-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.confirm-modal-content {
    background: white;
    padding: 0;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 450px;
    width: 92%;
    min-height: auto;
    overflow: hidden;
    animation: confirmSlideIn 0.3s ease-out forwards;
}

@keyframes confirmSlideIn {
    from {
        transform: scale(0.8) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.confirm-icon {
    font-size: 48px;
    margin-bottom: 12px;
    margin-top: 28px;
}

.confirm-modal h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.confirm-modal p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    padding: 0 30px;
}

.confirm-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 0 30px 28px;
}

.confirm-modal-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.confirm-modal-btn.confirm {
    background: linear-gradient(135deg, #FF6B6B 0%, #ee5a5a 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.confirm-modal-btn.confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.confirm-modal-btn.cancel {
    background: white;
    color: #1e90ff;
    border: 2px solid #1e90ff;
}

.confirm-modal-btn.cancel:hover {
    background: #f0f6ff;
}
