      * {
        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;
}

.subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
	color:white;
}

      .converter-card {
   background: linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%);
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(8, 145, 178, 0.2);
        margin-bottom: 30px;
      }

      .form-group {
        margin-bottom: 25px;
      }

      label {
        display: block;
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 1.05em;
      }

      select, input[type="number"] {
        width: 100%;
        padding: 14px 16px;
        border: none;
        border-radius: 10px;
        font-size: 1em;
        background-color: #ffffff;
        color: #333;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
      }

      select:focus, input[type="number"]:focus {
        outline: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
      }

      select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23333' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 40px;
      }

      .convert-btn {
        width: 100%;
        padding: 16px;
      background: linear-gradient(360deg, #434888 0%, #0457e3 50%, #9CA1E2 100%);
        color: #0891b2;
        border: none;
        border-radius: 10px;
        font-size: 1.1em;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
      }

      .convert-btn:hover {
        background-color: #f0f9ff;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
      }

      .convert-btn:active {
        transform: translateY(0);
      }

      .results-card {
        background-color: #f0f9ff;
        border-radius: 20px;
        padding: 35px;
        box-shadow: 0 4px 15px rgba(8, 145, 178, 0.1);
        border: 2px solid #7dd3fc;
      }

      .results-card.hidden {
        display: none;
      }

      .results-title {
        color: #5b7bf2;
        font-size: 1.8em;
        margin-bottom: 20px;
        font-weight: 700;
        text-align: center;
      }

      .result-item {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
      }

      .result-item:hover {
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      }

      .result-item:last-child {
        margin-bottom: 0;
      }

      .result-label {
        color: #64748b;
        font-size: 0.95em;
        margin-bottom: 5px;
        font-weight: 600;
      }

      .result-value {
        color: #5b7bf2;
        font-size: 1.8em;
        font-weight: 700;
      }

      .result-approx {
        color: #94a3b8;
        font-size: 0.9em;
        margin-top: 5px;
      }

      .ingredient-label {
        text-align: center;
        color: #0891b2;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.1em;
      }

      footer {
        text-align: center;
        margin-top: 50px;
        color: #94a3b8;
        font-size: 0.9em;
      }

      @media (max-width: 768px) {
				.container{
					padding:0px
				}
				.e-con{
					padding:4px;
				}
        header h1 {
          font-size: 35px;
        }

        .converter-card {
          padding: 25px;
        }

        .results-card {
          padding: 25px;
        }

        .results-title {
          font-size: 1.4em;
        }

        .result-value {
          font-size: 1.5em;
        }
      }

      @media (max-width: 480px) {
        h1 {
          font-size: 1.6em;
        }

        .subtitle {
          font-size: 1em;
        }

        .converter-card {
          padding: 20px;
        }

        .results-card {
          padding: 20px;
        }
      }
    