body {
  font-family: "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
}

.logs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 50%, rgba(12,12,12,0.95), #000);
  color: white;
}

.toolbar {
  position: absolute;
  top: 20px;
  padding: 0 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logs-content {
  margin-top: 100px;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logs-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.search-container {
  width: 100%;
  max-width: 840px;
  margin-bottom: 20px;
}

.search-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: white;
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
}

.search-input:focus {
  outline: none;
  border-color: #4A90E2;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.3);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.logs-viewer {
  width: 100%;
  max-width: 800px;
  height: 50vh;
  background: linear-gradient(145deg, rgba(40,40,40,0.7), rgba(10,10,10,0.8));
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow:
    inset 0 -1px 6px rgba(255,255,255,0.1),
    0 2px 8px rgba(0,0,0,0.4);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.logs-text {
  margin: 0;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.5;
  color: #e0e0e0;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.logs-text mark {
  background-color: #4A90E2;
  color: white;
  padding: 2px 4px;
  border-radius: 3px;
}

.logs-content .bottom-button-wrapper {
  display: flex;
  gap: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.logs-content .bottom-button-wrapper .primary-button,
.logs-content .bottom-button-wrapper .secondary-button {
  flex: 1;
  width: auto;
  min-width: 0;
  margin: 0;
  margin-bottom: max(20px, env(safe-area-inset-bottom));
  pointer-events: auto;
  padding: 20px 0;
  border: none;
  border-radius: 32px;
  font-size: 18px;
  font-weight: bolder;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  justify-content: center;
}

.logs-content .bottom-button-wrapper .secondary-button {
  background: rgba(250, 250, 250, 0.1);
}

.logs-content .bottom-button-wrapper .secondary-button:hover,
.logs-content .bottom-button-wrapper .secondary-button:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}