.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;
}

.subtitle {
  font-size: 1.125rem;
  color: #64748b;
}

.converter-card {
  background: #ffffff;
  border-radius: 12px !important;
  padding: 40px !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  margin-bottom: 30px;
}

.input-group {
  margin-bottom: 24px;
}

.input-group label {
  display: block;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.input-group input {
  width: 100%;
  padding: 14px 16px !important;
  font-size: 1.1rem;
  border: 2px solid #e5e7eb !important;
  border-radius: 8px !important;
  background-color: #ffffff;
  color: #1f2937;
}

.input-group input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.range-hint {
  font-size: 0.875rem;
  color: #6b7280;
}

.convert-button {
  width: 100% !important;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.convert-button:hover {
  transform: translateY(-2px);
}

.result-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #dbeafe;
  text-align: center;
}

.result-section.hidden {
  display: none;
}

.loader {
  border: 4px solid #dbeafe;
  border-top: 4px solid #3b82f6;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.result-content.hidden {
  display: none;
}

.score-display {
  font-size: 4rem;
  font-weight: 700;
  color: #3b82f6;
}

.info-card {
  background: #f3f3f3;
  padding: 30px;
  border-radius: 12px;
}

@media (max-width: 768px) {
	.container{
		padding:0px !important;
		
	}
	.headers h1{
		font-size:35px !important
	}
	.convert-button{
		    font-size: 15px !important;
    padding: 10px !important;
	}
  .converter-card { padding: 20px !important; }
  .score-display { font-size: 3rem; }
}