/* Navigation Submit Button Styles */

.nav-submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(138, 43, 226, 0.3);
}

.nav-submit-button:hover {
    background-color: #9D4EDD; /* Lighter purple */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(138, 43, 226, 0.4);
}

.nav-submit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(138, 43, 226, 0.2);
}

/* Make sure the button aligns well in the navigation */
nav ul li:last-child {
    display: flex;
    align-items: center;
}

/* Add a subtle glow effect on hover */
.nav-submit-button:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}