/* Contact Form Message Styles */
.contact-message {
    font-family: 'Signika', sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding: 12px 20px;
    margin: 15px 0;
    border-radius: 8px;
    text-align: center;
    animation: slideIn 0.3s ease-in-out;
}

.contact-message.success {
    background: linear-gradient(145deg, #28a745 0%, #20c997 100%);
    color: white;
    border: 1px solid #28a745;
    box-shadow: 0px 0px 8px 0px rgba(40, 167, 69, 0.3);
}

.contact-message.error {
    background: linear-gradient(145deg, #dc3545 0%, #ff4f5e 100%);
    color: white;
    border: 1px solid #dc3545;
    box-shadow: 0px 0px 8px 0px rgba(220, 53, 69, 0.3);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit button disabled state */
.cv-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #666 !important;
    box-shadow: none !important;
}
