/* ****************************************************************************
 * mvp menu formatting                                                        * 
 *                                                                            *
 * Author: ETM                                                                *
 * Created: 20230113                                                          *
 *                                                                            *
 * *************************************************************************  */

/* --- Vertical separator --- */
/* Default styling for mobile (No border) */
.vert-line {
  border-right: none; 
}
/* Styling for desktop and tablets */
@media (min-width: 768px) {
  .vert-line {
    border-right: 2px solid #333;
  }
}

/* ----------------------------------------------------------------------------
 * Logout link/form
 * ------------------------------------------------------------------------- */
 .logout-link-button {
  background: none;
  border: none;
  color: #0066cc;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.logout-link-button:hover {
  color: #004499;
}