/**
 * Order Button Fix Stylesheet
 * 
 * Ensures the Complete Order button is always clickable
 */

#submit-order {
    cursor: pointer !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    user-select: auto !important;
}

/* Add hover effect */
#submit-order:hover {
    background-color: #2563eb !important; /* blue-700 */
}

/* Remove any disabled styling */
#submit-order:disabled {
    background-color: #3b82f6 !important; /* blue-600 */
    cursor: pointer !important;
    opacity: 1 !important;
}

/* Make sure any overlays aren't blocking the button */
form {
    position: relative;
    z-index: 10;
}
