/* Tools page specific styles */

.tools-calculator {
  background: #404040;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.fish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fish-item {
  background: #353535;
  padding: 0.75rem;
  border-radius: 6px;
}

.fish-item .item-image-container {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.5rem;
  background-color: #555;
  border: 1px solid #666;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fish-item label {
  color: #e0e0e0;
  font-size: 0.9rem;
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
}

.fish-item input {
  width: 100%;
  padding: 0.4rem;
  border-radius: 4px;
  border: none;
  font-size: 0.9rem;
}

.fish-item .gem-value {
  color: #888;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  text-align: center;
}

.no-image {
  color: #7f8c8d;
  font-size: 0.7rem;
  text-align: center;
}

.wl-rate-container {
  margin-bottom: 1rem;
  background: #353535;
  padding: 0.75rem;
  border-radius: 6px;
}

.wl-rate-container label {
  color: #e0e0e0;
  display: block;
  margin-bottom: 0.5rem;
}

.wl-rate-container input {
  width: 100%;
  padding: 0.5rem;
  border-radius: 4px;
  border: none;
}

.calculate-button {
  width: 100%;
  padding: 0.75rem;
  background: #3498db;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
}

.calculate-button:hover {
  background: #2980b9;
}

.fish-result {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #2c3e50;
  border-radius: 4px;
  font-weight: bold;
}

.locked-tool {
  opacity: 0.6;
  cursor: not-allowed;
}

.lock-icon {
  color: #95a5a6;
}

.locked-content {
  background: #404040;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  opacity: 0.7;
}

.locked-text {
  color: #95a5a6;
  font-style: italic;
  text-align: center;
}

.locked-description {
  color: #bdc3c7;
  margin-top: 1rem;
}

.locked-features {
  color: #bdc3c7;
  margin: 1rem 0;
  padding-left: 2rem;
}

.quick-links {
  color: #e0e0e0;
  line-height: 1.6;
}

.quick-links a {
  color: #3498db;
}

.quick-links .locked-link {
  color: #95a5a6;
}

.fish-item .item-image-container img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  border-radius: 4px;
}

/* Fish calculator specific sizing for different image containers */
.fish-result .item-image-container img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.fish-result .item-image-container img[alt="Total Gems"] {
  width: 18px;
  height: 18px;
}
