* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
    max-width: 1000px;
    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: 31px;
    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);
}

.date-selector {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.date-selector label {
  font-size: 1rem;
  font-weight: 600;
  color: #0c4a6e;
}

.date-selector input[type="date"] {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border: 2px solid #0ea5e9;
  border-radius: 12px;
  background: #f0f9ff;
  color: #0c4a6e;
  font-family: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

.date-selector input[type="date"]:hover {
  border-color: #0284c7;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.date-selector input[type="date"]:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
  background: #ffffff;
}

.result-card {
   background: linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
  position: relative;
}

.result-card h2 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 600;
  opacity: 0.95;
}

.result-date-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.result-date {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
  min-width: 250px;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 10px !important;
  padding: 12px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #ffffff !important;
}

.copy-btn svg {
  width: 24px;
  height: 24px;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.copy-btn:active {
  transform: scale(0.95);
}

.copy-notification {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #059669;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.copy-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-item {
  background: #f0f9ff;
  border: 2px solid #bae6fd;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.15);
  border-color: #7dd3fc;
}

.info-label {
  font-size: 0.9rem;
  color: #0c4a6e;
  margin-bottom: 8px;
  font-weight: 600;
}

.info-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0284c7;
}

@media (max-width: 640px) {
  .container {
    padding: 0px !important;
  }
	.e-con{
		padding:6px;
	}
  h1 {
    font-size: 35px !important;
  }

  .calendar-icon {
    width: 80px;
    height: 80px;
  }

  .result-date {
    font-size: 1.25rem;
    padding: 12px 16px;
    min-width: 200px;
  }

  .result-card h2 {
    font-size: 1.1rem;
  }

  .info-section {
    grid-template-columns: 1fr;
  }

  .info-value {
    font-size: 1.25rem;
  }

  .result-date-container {
    flex-direction: column;
  }

  .copy-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 20px;
  }

  h1 {
    font-size: 1.25rem;
  }

  .result-card {
    padding: 24px;
  }

  .result-date {
    font-size: 16px;
  }
}
