body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
}

.dikdortgen {
  width: 80%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.konsol {
  background-color: #eee;
  color: #333;
  padding: 10px;
  border-radius: 5px;
  border: 2px solid #ccc;
  font-family: monospace;
  font-size: 12px;
  line-height: 1.3;
  overflow-y: auto;
  white-space: pre-wrap;
  width: 100%;
  max-height: 300px;
  margin-bottom: 10px; /* Added margin bottom for spacing */
}

.button-container {
  display: flex;
  gap: 10px;
  margin-top: 10px; /* Added margin top to move buttons down */
}

button {
  padding: 12px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #45a049;
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.stop-text {
  font-size: 12px;
  color: #888;
  margin-top: 5px; /* Adjusted margin top to move the text slightly higher */
}

.tme-link {
  font-size: 12px;
  color: #888;
  margin-top: 10px; /* Added margin top for spacing */
}
