
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family:
      Inter,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    background-color: #f5f5f5;
    padding: 20px;
  }
  
  .report-section {
    display: flex;
    max-width: 763px;
    margin: 0 auto;
    flex-direction: column;
  }
  
  .report-title {

    color: rgba(0, 0, 0, 1);
    font-size: 32px;
    font-family:
      Inter,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-weight: 500;
    margin-bottom: 40px;
  }


  
  .filter-container {
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    width: 582px;
    max-width: 100%;
    padding-bottom: 37px;
    flex-direction: column;
    align-items: center;
    display: flex;
    margin: 0 auto;
  }
  
  .filter-header {
    background-color: rgba(253, 217, 124, 1);
    align-self: stretch;
    padding: 25px 58px;
    font-family:
      Inter,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 20px;
    color: rgba(0, 0, 0, 1);
    font-weight: 400;
    width: 100%;
  }
  
  .month-filter,
  .year-filter {
    display: flex;
    width: 457px;
    max-width: 100%;
    align-items: center;
    gap: 39px;
  }
  
  .month-filter {
    margin-top: 44px;
  }
  
  .year-filter {
    margin-top: 20px;
  }
  
  .month-label,
  .year-label {
    color: rgba(0, 0, 0, 1);
    font-size: 20px;
    font-family:
      Inter,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-weight: 400;
    flex-basis: 80px;
  }
  
  .custom-select {
    position: relative;
    flex-grow: 1;
  }
  
  .custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    border-radius: 5px;
    background-color: rgba(234, 234, 234, 1);
    padding: 15px;
    border: none;
    font-family:
      Inter,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 16px;
    cursor: pointer;
  }
  
  .custom-select::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    pointer-events: none;
  }
  
  .print-button {
    border-radius: 5px;
    background-color: #007aff;
    margin-top: 31px;
    width: 458px;
    max-width: 100%;
    padding: 11px 58px;
    font-family:
      Inter,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    border: none;
  }
  
  .print-button:hover {
    background-color: #0056b3;
  }
  
  @media (max-width: 991px) {
    .report-title {
      max-width: 100%;
      text-align: center;
    }
  
    .filter-container {
      margin-top: 20px;
    }
  
    .filter-header {
      padding-left: 20px;
      padding-right: 20px;
      text-align: center;
    }
  
    .month-filter,
    .year-filter {
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
      padding: 0 20px;
    }
  
    .month-label,
    .year-label {
      margin-bottom: 5px;
    }
  
    .custom-select {
      width: 100%;
    }
  
    .print-button {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  