.codewin-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.codewin-window {
  position: absolute;
  height: 300px;
  width: 525px;
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 15px;
  overflow: hidden;
}

.codewin-window-title {
  height: 30px;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}

.codewin-window-title p {
  color: #fff;
  font-weight: bold;
  margin: 0;
  padding: 0;
  text-align: left;
}

.codewin-window-buttons {
  display: flex;
  align-items: center;
}

.codewin-window-button {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  margin: 5px;
  transition: background-color 0.2s ease;
}

.codewin-close {
  background-color: #f00;
}

.codewin-close:hover {
  background-color: rgb(182, 2, 2);
  cursor: pointer;
}

.codewin-reduce {
  background-color: #ff0;
}

.codewin-reduce:hover {
  background-color: rgb(172, 172, 4);
  cursor: pointer;
}

.codewin-fullscreen {
  background-color: #0f0;
}

.codewin-fullscreen:hover {
  background-color: rgb(7, 159, 7);
  cursor: pointer;
}

.codewin-window-button:focus {
  outline: none;
}

.codewin-console {
  width: 100%;
  height: calc(100% - 30px);
  background-color: #000;
  color: #fff;
  overflow: auto;
}

.codewin-console pre {
  font-family: Arial, sans-serif;
   text-align: justify;
  font-weight: bolder;
  margin: 0;
  padding: 5px;
  font-size: 15px;
}

.codewin-console pre code {
  color: #0f0;
  outline: none;
}

.codewin-console::-webkit-scrollbar {
  width: 8px;
}

.codewin-console::-webkit-scrollbar-track {
  background-color: #333;
}

.codewin-console::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 10px;
  border: 2px solid #333;
}

.codewin-console::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}
