/* Styles the Submit button with bold text and reduced padding */
#InsertButton {
    background-color: #59b6b6 !important; /* Flat teal color from your design */
    color: #000000 !important;            /* Black text */
    border: none !important;
    border-radius: 50px !important;       /* Maintains the pill shape */
    
    /* Reduced padding: 8px vertical, 30px horizontal (down from 12px/40px) */
    padding: 8px 30px !important;        
    
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 400 !important;          /* Sets the internal text*/
    font-size: 16px !important;
    cursor: pointer !important;
    box-shadow: none !important;          
}

/* Optional: Maintains the hover state for consistency */
#InsertButton:hover {
    background-color: #4a9e9e !important;
    color: #000000 !important;
}