/* Nether Calculator Styles */
.nether-calculator-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
}

.nether-calculator-title {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

/* Tabs */
.nether-calculator-tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.nether-tab-button {
  flex: 1;
  padding: 10px 15px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
}

.nether-tab-button:hover {
  background-color: #f5f5f5;
}

.nether-tab-button.active {
  color: #000000;
  border-bottom: 2px solid #000000;
}

/* Tab Content */
.nether-calculator-tab-content {
  display: none;
}

.nether-calculator-tab-content.active {
  display: block;
}

/* Form Elements */
.nether-calculator-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nether-calculator-input-group {
  display: flex;
  flex-direction: column;
}

.nether-calculator-input-group label {
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.nether-calculator-input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.nether-calculator-button {
  padding: 12px 20px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.nether-calculator-button:hover {
  background-color: #333333;
}

/* Results */
.nether-calculator-result {
  margin-top: 20px;
  padding: 15px;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.nether-calculator-result h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #333;
}

.nether-result-coordinates {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.nether-result-coordinates span {
  flex: 1;
  min-width: 80px;
}

/* Info Section */
.nether-calculator-info {
  margin-top: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-left: 3px solid #000000;
  font-size: 14px;
  color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nether-calculator-container {
    padding: 15px;
  }

  .nether-result-coordinates {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .nether-tab-button {
    padding: 8px 10px;
    font-size: 14px;
  }

  .nether-calculator-button {
    padding: 10px 15px;
  }
}
