/* CSS for JavaFX Application */

#pane 	 { -fx-background-color:lightyellow;
          -fx-font-weight:bold; 
           -fx-padding:10 25 25 20;  
           -fx-hgap:10; 
           -fx-vgap:10; } 

#heading { -fx-font-size:18px; } 

#row3    { -fx-alignment:center; }		/* other values: top_left, top_center, top_right, center_left, ..., bottom_left, ... */

#mSelect { -fx-max-width:95px; 
		  -fx-pref-height:25px; }

#submit  { -fx-background-color:green; 
		  -fx-background-radius:10;
		  -fx-text-fill:white; 
		  -fx-cursor:hand; } 

#cancel  { -fx-background-color:red; 
		  -fx-background-radius:10;
		  -fx-text-fill:white; 
		  -fx-cursor:hand; } 

.label	{ -fx-font-size:14px; }

.space	{ -fx-min-width:15; }