.resizable-container.resizable-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 30rem;
  background-color: var(--background-secondary);
  z-index: 19;
  box-shadow: var(--primary-shadow);
  min-width: 800px;
  min-height: 34rem;
}

.resizable-container.full-screen {
  width: 100% !important;
  height: 100% !important;
  left: 0 !important;
  top: 0 !important;
  max-height: 100vh;
}

.resizable-container.resizable-wrapper .resizable-header {
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  cursor: move;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
}

.resizable-container.resizable-wrapper .resizable-body {
  width: 100%;
  background-color: inherit;
}

.resizable-container.resizable-wrapper .resizable-header .header-btn {
  color: var(--text-primary);
  padding: 1rem;
  background-color: transparent;
  border-radius: 0.375rem;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  border: none;
}

.resizable-container.resizable-wrapper .resizable-header .header-btn:hover {
  background-color: var(--accent-background-secondary);
}

.resizable-container .resizable-nw {
  width: 15px;
  height: 15px;
  z-index: 2;
  position: absolute;
  top: -5px;
  left: -5px;
  cursor: nw-resize;
}

.resizable-container .resizable-ne {
  cursor: ne-resize;
  top: -5px;
  right: -5px;
  width: 15px;
  height: 15px;
  z-index: 2;
  position: absolute;
}

.resizable-container .resizable-se {
  position: absolute;
  right: -5px;
  width: 15px;
  height: 15px;
  cursor: nw-resize;
  z-index: 2;
  bottom: -5px;
}

.resizable-container .resizable-sw {
  width: 15px;
  height: 15px;
  z-index: 2;
  position: absolute;
  left: -5px;
  bottom: -5px;
  cursor: ne-resize;
}

.resizable-container .dummy-iframe-wrapper {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}