* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    overflow-x: hidden;
	
}
/* Header Styles */
header {
    text-align: center;
     background: linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%);
    color: white !important;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}




header h1 {
    font-size: 45px !important;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.result-section {
  background: linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(8, 145, 178, 0.2);
  color: white !important;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.result-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
	color:white;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.2) !important;
  border: none !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  cursor: pointer;
  color: white !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.copy-btn:active {
  transform: translateY(0);
}

.result-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 15px;
  opacity: 0.95;
}

.main-days-display {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.result-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.result-card.highlight {
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.result-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.result-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 8px;
  font-weight: 500;
}

.result-value {
  font-size: 1.1rem;
  font-weight: 700;
  word-wrap: break-word;
}

.calculator-section {
  background: #f8fafc;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  color: #0891b2;
  font-weight: 600;
  font-size: 0.95rem;
}

.input-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0f2fe;
  border-radius: 8px;
  font-size: 1rem;
  background-color: white;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.input-group select:hover {
  border-color: #7dd3fc;
}

.input-group select:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.calculate-btn {
/*   width: 100%; */
  padding: 20px;
   background: linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%);
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.calculate-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  header h1 {
    font-size: 35px !important;
  }
	.container{
		padding:0px;
	}
/* 	.e-con{
		padding:6px;
	} */
  .result-section {
    padding: 20px;
  }

  .result-header h2 {
    font-size: 1.25rem;
  }

  .result-title {
    font-size: 1rem;
  }

  .main-days-display {
    font-size: 2rem;
    padding: 15px;
    margin-bottom: 20px;
  }

  .result-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .result-card {
    padding: 15px;
  }

  .result-icon {
    font-size: 1.5rem;
  }

  .result-value {
    font-size: 0.95rem;
  }

  .calculator-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
/*   body {
    padding: 10px;
  } */

  header h1 {
    font-size: 1.25rem;
  }

  .main-days-display {
    font-size: 1.75rem;
    padding: 12px;
    margin-bottom: 15px;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  .input-group select {
    padding: 10px 12px;
  }

  .calculate-btn {
    padding: 12px;
    font-size: 1rem;
  }
}
