.divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #eaecf4;
}

select+.select2 {
  width: 100% !important;
}

/* Prevenir overflow horizontal y asegurar footer en el fondo */
html {
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

#content-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  overflow-x: hidden;
}

#content {
  flex: 1 0 auto;
  width: 100%;
  overflow-x: hidden;
}

.container,
.container-fluid,
.row {
  max-width: 100%;
  overflow-x: hidden;
}

footer.sticky-footer {
  flex-shrink: 0;
  margin-top: auto;
  width: 100%;
}

/* Forzar word-break en todos los textos */
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.form-control,
input,
textarea,
select,
p,
div,
span,
strong {
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

@media (max-width: 1000px) {
  .hide-1000 {
    display: none !important;
  }
}