* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #26282b;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(49, 52, 56, 0.6);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

#status {
  font-weight: bold;
}

.volume-meter {
  width: 200px;
  height: 10px;
  background-color: rgba(68, 72, 77, 0.8);
  border-radius: 5px;
  overflow: hidden;
}

#volume-bar {
  height: 100%;
  width: 0;
  background-color: #47ffc4;
  transition: width 0.1s;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #47ffc4;
  color: #26282b;
  font-weight: bold;
  cursor: pointer;
}

button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.tabs {
  margin-bottom: 20px;
}

.tab-buttons {
  display: flex;
  margin-bottom: 10px;
}

.tab-btn {
  flex: 1;
  background-color: rgba(49, 52, 56, 0.6);
  color: #ffffff;
}

.tab-btn.active {
  background-color: #47ffc4;
  color: #26282b;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

textarea {
  width: 100%;
  height: 300px;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(49, 52, 56, 0.6);
  color: #ffffff;
  border: 1px solid rgba(71, 255, 196, 0.1);
  resize: vertical;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.recording #record-btn {
  background-color: #ff4500;
}
