.cf7-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 9999;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cf7-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.cf7-toast-success {
    background-color: #28a745;
}

.cf7-toast-error {
    background-color: #dc3545;
}

.cf7-toast-info {
    background-color: #17a2b8;
}

/* Hide default CF7 messages */
.wpcf7-response-output {
    display: none !important;
}


.wpcf7 .screen-reader-response {
    display: none;
}

.wpcf7-form .wpcf7-not-valid-tip {
    display: none;
}

.wpcf7-form .w-full p, .wpcf7-form .w-full input:not([type=submit]) {
    width: 100%;
}