* {
  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);
	color:white;
}
/* #app {
  max-width: 100%;
  width: 100%;
} */





/* .subtitle {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.5;
} */

.result-section {
   background: linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%);
  border-radius: 16px !important;
  padding: 40px 30px !important;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(14, 165, 233, 0.2);
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 15px;
}

.result-header h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  flex: 1;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  padding: 10px !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.05);
}

.copy-btn:active {
  transform: scale(0.95);
}

.countdown-display {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.time-unit {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.time-unit:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.time-value {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1;
  margin-bottom: 8px;
}

.time-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-transform: capitalize;
}

.form-section {
  background: #ffffff !important;
  border: 2px solid #e0f2fe !important;
  border-radius: 16px!important;
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.08);
}

.form-description {
  color: #64748b !important;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 1rem;
}

#countdownForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
}

input[type="time"],
input[type="date"] {
  padding: 14px 16px !important;
  border: 2px solid #cbd5e1 !important;
  border-radius: 10px;
  font-size: 1rem !important;
  font-family: inherit;
  color: #1e293b;
  transition: all 0.3s ease;
  background: #ffffff;
}

input[type="time"]:focus,
input[type="date"]:focus {
  outline: none !important;
  border-color: #0ea5e9 !important;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

input[type="time"]:hover,
input[type="date"]:hover {
  border-color: #7dd3fc;
}

.update-btn {
  background: linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%);
  color: #ffffff !important;
  border: none !important;
  padding: 16px 32px !important;
  border-radius: 10px !important;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.update-btn:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.update-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .container {
    padding: 0px;
  }

  h1 {
    font-size: 35px;
  }

  .subtitle {
    font-size: 1rem;
  }
	.e-con{
		padding:6px;
	}
  .result-section {
    padding: 30px 20px;
  }

  .result-header h2 {
    font-size: 1.2rem;
  }

  .countdown-display {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .time-value {
    font-size: 2.5rem;
  }

  .time-label {
    font-size: 0.85rem;
  }

  .form-section {
    padding: 25px 20px;
  }

  .update-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .result-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .copy-btn {
    align-self: flex-end;
  }

  .time-value {
    font-size: 2rem;
  }

  .time-unit {
    padding: 15px 8px;
  }
}
