/* This CSS file contains fixes for mobile devices. It should be included after the main CSS file. */

/* Select dropdown para tabs en mobile */
.box_tabs_select {
  display: none;
  width: calc(100% - 10px);
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  margin-left: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  #main_content.collapsed {
    width: 100%;
  }

  /* Ocultar tabs normales en mobile */
  .box_tabs {
    display: none !important;
  }

  /* Mostrar select dropdown en mobile */
  .box_tabs_select {
    display: block;
  }
}