/* Inherits base styles from styles.css */

.tool-main-content {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.tool-wrapper {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2.5rem;
  background: rgba(15, 15, 35, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(77, 208, 225, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tool-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tool-main-icon {
  font-size: 2.5rem;
  color: #4dd0e1;
  margin-bottom: 1rem;
}

.tool-header h1 {
  font-size: 2.2rem;
}

/* Input Area */
#hashInput {
  width: 100%;
  min-height: 200px;
  padding: 1.5rem;
  font-family: "Courier New", monospace;
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  background: #1c1e29;
  border: 1px solid rgba(77, 208, 225, 0.2);
  border-radius: 10px;
  resize: vertical;
  transition: all 0.3s ease;
}
#hashInput:focus {
  outline: none;
  border-color: #4dd0e1;
  box-shadow: 0 0 0 3px rgba(77, 208, 225, 0.2);
}

/* Hashes Output */
.hashes-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hash-output-item label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #4dd0e1;
}

.output-group {
  display: flex;
  gap: 0.5rem;
}

.output-group input {
  flex-grow: 1;
  padding: 0.8rem;
  font-family: "Courier New", monospace;
  font-size: 0.95rem;
  border: 1px solid rgba(77, 208, 225, 0.3);
  border-radius: 8px;
  background: rgba(10, 10, 20, 0.5);
  color: #e0e0e0;
}

.copy-btn {
  flex-shrink: 0;
  width: 45px;
  border: none;
  background: rgba(77, 208, 225, 0.2);
  color: #4dd0e1;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.copy-btn:hover {
  background: rgba(77, 208, 225, 0.4);
  color: #fff;
}

/* SEO Content Section */
.content-section {
  max-width: 900px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(77, 208, 225, 0.2);
  color: #e0e0e0;
}
.content-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.content-section p,
.content-section li {
  line-height: 1.7;
  margin-bottom: 1rem;
}
.content-section ul {
  padding-left: 20px;
}

@media (min-width: 768px) {
  .hashes-container {
    grid-template-columns: 1fr 1fr;
  }
}
