:root {
	--offcanvas-width: 400px;
}

.offcanvas {
  position: fixed;
  top: 0;
  right: calc(var(--offcanvas-width) * -1); /* Oculto fuera de la pantalla */
  max-width: var(--offcanvas-width);
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  z-index: 1050; /* Compatible con el z-index de Bootstrap */
  transition: right 0.3s ease-in-out;
}

.offcanvas.show {
  right: 0; /* Cuando está visible */
}

.offcanvas-header {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  background-color: #f8f9fa;
}

.offcanvas-body {
  padding: 15px;
}

.offcanvas-close {
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  background: none;
}