.form-actions.webform-actions.js-form-wrapper.form-wrapper,
#edit-actions {
  margin-bottom: 40px;
}

.swal-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.swal-modal {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: slideIn 0.3s ease;
}

.swal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.swal-icon--success {
    border: 4px solid #4caf50;
    border-radius: 50%;
    position: relative;
    animation: scaleIn 0.5s ease;
}

.swal-icon--success::before,
.swal-icon--success::after {
    content: '';
    position: absolute;
    background: #4caf50;
    border-radius: 3px;
}

.swal-icon--success::before {
    width: 5px;
    height: 25px;
    left: 28px;
    top: 35px;
    transform: rotate(-45deg);
}

.swal-icon--success::after {
    width: 5px;
    height: 47px;
    right: 18px;
    top: 18px;
    transform: rotate(45deg);
}

.swal-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.swal-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.swal-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.swal-button:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}