/* Bundle Checker specific styles */

.mode-selector {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.header {
  background: #0d0d10;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.text-percent {
  color: #44e48e;
}

.header-router a {
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

.header-router-active {
  color: #44e48e !important;
}

.header-router {
  display: flex;
  gap: 10px;
  text-transform: uppercase;
  font-weight: 700;
}

.mode-btn {
  padding: 12px;
  border: 2px solid #28282b;
  background: #1c1c1e;
  color: #ababad;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 160px;
  text-transform: uppercase;
}

.mode-btn:hover {
  opacity: 0.9;
}

.mode-btn.active {
  color: #44e48e;
  border-color: #44e48e;
}

.analysis-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.analysis-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.analysis-section .description {
  color: #ababad;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.analysis-form {
  background: #1c1c1e;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #28282b;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #28282b;
  color: white;
  background: #28282b;
  border-radius: 12px;
  font-size: 1rem;
}

.form-group input:focus {
  border-color: #44e48e;
  outline: none;
}

.primary-button {
  background: #44e48e;
  color: black;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  transition: background 0.3s ease;
}

.primary-button:hover {
  opacity: 0.8;
}

.primary-button:disabled {
  background: #95a5a6;
  cursor: not-allowed;
}

/* Progress bar styles */

.progress-container {
  margin-top: 2rem;
}

.progress-bar {
  width: 100%;
  height: 20px;
  background-color: #f3f3f3;
  border-radius: 10px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: #3498db;
  transition: width 0.3s ease;
}

.progress-text {
  text-align: center;
  margin-top: 0.5rem;
  color: #44e48e;
}

/* Results styles */

.results-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.results-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.summary {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.summary p {
  margin: 0.5rem 0;
  color: #2c3e50;
}

.bundles h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.bundle-item {
  border-left: 3px solid #44e48e;
  padding: 1rem;
  margin: 1rem 0;
  background: #1c1c1e;
}

.bundle-item strong {
  color: #2c3e50;
  display: block;
  margin-bottom: 0.5rem;
}

.bundle-item ul {
  list-style: none;
  padding-left: 1.5rem;
  color: #666;
}

.bundle-item ul li {
  margin: 0.25rem 0;
}

.error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 1rem;
  border-radius: 4px;
  margin-top: 1rem;
}
