#browse-window {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.browse-container {
  background: #f0f0e1;
  border: 2px solid #6b6b6b;
  padding: 0;
  font-family: 'APR', 'Times New Roman', serif;
  box-shadow: 3px 3px 0px #d0d0c0;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  height: 100%;
}

.search-container {
  display: flex;
  gap: 8px;
  padding: 15px;
  background: #e0e0d0;
  border: 1px solid #a0a090;
  align-items: center;
  flex-shrink: 0;
}

#browser-url {
  flex: 1;
  padding: 8px 10px;
  border: 2px solid #a0a090;
  background-color: #ffffff;
  color: #505040;
  font-family: 'APR', 'Times New Roman', serif;
  font-size: 0.9em;
}

#browser-url:focus {
  outline: none;
  box-shadow: 0 0 0 2px #a0a090;
}

.browse-button {
  padding: 8px 16px;
  background-color: #c0c0b0;
  color: #505040;
  border: 2px solid #a0a090;
  font-weight: bold;
  font-family: 'APR', 'Times New Roman', serif;
  font-size: 0.9em;
  cursor: pointer;
  box-shadow: 2px 2px 0px #8a8a7a;
  transition: all 0.1s ease;
  white-space: nowrap;
}

.browse-button:hover, .bookmark-button:hover {
  box-shadow: 2px 2px 0px #6a6a5a;
  background-color: #d0d0c0;
}

.browse-button:active, .bookmark-button:active {
  box-shadow: inset 1px 1px 0px #a0a090;
  transform: translateY(1px) translateX(1px);
}

.bookmark-button {
  padding: 4px 8px;
  background-color: #c0c0b0;
  color: #505040;
  border: 2px solid #a0a090;
  font-weight: bold;
  font-family: 'APR', 'Times New Roman', serif;
  font-size: 0.9em;
  cursor: pointer;
  box-shadow: 2px 2px 0px #8a8a7a;
  transition: all 0.1s ease;
  white-space: nowrap;
}

.bookmark-icon {
  width: 20px;
}

#browser-frame {
  flex: 1;
  width: 100%;
  border: 2px solid #a0a090;
  background-color: #ffffff;
  min-height: 100%;
  overflow: auto;
  border-top: none;
}

@media (max-width: 600px) {
  .search-container {
    flex-direction: column;
  }

  #browser-url {
    width: 100%;
  }

  .browse-button {
    width: 100%;
  }
}