.container {
  max-width: 800px;
  margin: 0 auto;
/*   padding: 20px; */
}

.headers {
  text-align: center;
	 background: linear-gradient(180deg, #6630C6 0%, #330F95 100%);


	padding: 31px;
    border-radius: 15px;
    margin-bottom: 10px;
}

.headers h1 {
  font-size: 45px !important;
  font-weight: 700;
  color:white;
  margin-bottom: 8px;
  line-height: 1.2;
}

.headers p {
  font-size: 1.1em;
  opacity: 0.95;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.calculator-card {
  background: #ffffff;
  border: 1px solid #e0e0e0 !important;
  border-radius: 12px !important;
  padding: 28px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calculator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(30, 136, 229, 0.2);
}

.calculator-card h2 {
  color: #1e88e5;
  font-size: 1.4em !important;
  margin-bottom: 24px;
  font-weight: 600;
  border-bottom: 2px solid #42a5f5 !important;
  padding-bottom: 12px !important;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-weight: 500;
  font-size: 0.95em;
}

.score-select,
.score-input {
  width: 100%;
  padding: 12px 16px !important;
  border: 2px solid #e0e0e0;
  border-radius: 8px !important;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
  color: #2c3e50;
}

.score-select:focus,
.score-input:focus {
  outline: none !important;
  border-color: #1e88e5 !important;
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.score-input::placeholder {
  color: #aaa;
}

.button-group {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 24px !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 136, 229, 0.4);
	 color: white;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: #f5f5f5 !important;
  color: #2c3e50 !important;
  border: 2px solid #e0e0e0 !important;
}

.btn-secondary:hover {
  background-color: #e0e0e0;
  border-color: #546e7a;
	 color: white !important;
}

.result {
  margin-top: 24px;
  padding: 20px !important;
  border-radius: 8px !important;
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
/*   opacity: 0; */
  transform: translateY(-10px);
  transition: all 0.3s ease;
	  color: #1565c0 !important;
	background:#e6e5e63b;
	
}

.result.show {
  opacity: 1;
  transform: translateY(0);
	  background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(21, 101, 192, 0.1) 100%) !important;
  color: #1565c0 !important;
  border: 2px solid #1e88e5 !important;
}

.result.success {
  background-color: #e8f5e9 !important;
  color: #4caf50 !important;
  border: 2px solid #4caf50 !important;
}

.result .info {
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(21, 101, 192, 0.1) 100%) !important;
  color: #1565c0 !important;
  border: 2px solid #1e88e5 !important;
}

@media (max-width: 768px) {
  .headers h1 {
    font-size: 35px !important;
  }

  .headers p {
    font-size: 1em;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .calculator-card {
    padding: 20px;
  }

  .calculator-card h2 {
    font-size: 1.2em;
  }

  .button-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
/*   body {
    padding: 12px;
  } */

  header {
    padding: 20px 16px;
    margin-bottom: 24px;
  }

  .headers h1 {
    font-size: 35px !important;
  }

  .calculator-card {
    padding: 16px;
  }

  .score-select,
  .score-input {
    padding: 10px 12px;
  }
}