@font-face {
    font-family: 'IranYekan';
    src: url('fonts/iranyekan_reg_fa.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'IranYekan';
    src: url('fonts/iranyekan_bold_fa.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }

  body {
    font-family: 'IranYekan', sans-serif;
    background-color: #f5e6f0;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
  }
  
  h1 {
    font-family: 'IranYekan', sans-serif;
    font-size: 24px;
    font-weight: bold;
  }
  
  .subtitle {
    font-family: 'IranYekan', sans-serif;
    color: grey;
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .container {
    max-width: 400px;
    text-align: center;
  }
  
  
  .date-picker, .ga-picker {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 8px 0;
  }
  
  .picker {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .picker input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f5f5f5;
    font-size: 24px;
    color: #1e90ff;
    text-align: center;
    font-family: 'IranYekan', sans-serif; /* Add this line */
  }
  
  
  .ga-section {
    margin-top: 32px;
  }
  
  .ga-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  

  .result {
    margin-top: 20px;
  }
  
  h3 {
    font-family: 'IranYekan', sans-serif;
    font-size: 13px;
    font-weight: bold;
    text-align: right;
    margin: 0;
  }
  
  .picker label {
    font-family: 'IranYekan', sans-serif;
    font-size: 11px;
    color: grey;
    margin-top: 4px;
  }
  
  .ga-label label {
    font-family: 'IranYekan', sans-serif;
    font-size: 13px;
  }
  
  .result span {
    font-family: 'IranYekan', sans-serif;
    background-color: #1e90ff;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
  }

  
.picker select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f5f5f5;
    font-size: 24px;
    color: #1e90ff;
    text-align: center;
    font-family: 'IranYekan', sans-serif;
    -webkit-appearance: none;
    /* Remove default styling on mobile */
    -moz-appearance: none;
    appearance: none;
    text-align-last: center;
    /* Center text in some browsers */
}