/* CSS for JavaFX Application */

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

#title   { -fx-font:bold 20px 'Verdana'; 
           -fx-fill:blue; }  

#vSpace  { -fx-min-height:10px; }

#row3    { -fx-alignment:center }       /*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; }