.sidebar hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 12px 0;
}

.btn-small {
  padding: 6px 10px;
  background: #0077ff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-small.reject {
  background: #cc3333;
}

.drawer {
  position: fixed;
  right: 0;
  top: 0;
  width: 360px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: 0.3s ease;
}

.drawer:not(.hidden) {
  transform: translateX(0);
}

.drawer-close {
  float: right;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
