/*
  @mixin theme($property, $key, $inlineExtra:null, $postExtra:null)
  Assigns a property a theme value for each defined theme.
Example usage:
    .mySelector {
      padding: 6px;
      @include theme(background-color, backgroundLight);
      @include theme(border, borderDark, 1px solid);
    }
sass generated equivalent:
    .mySelector {
      padding: 6px;
      :global(.light) & {
        border: 1px solid color(woodsmoke);
        border: 1px solid var(--theme-light-borderDark, color(woodsmoke));
      }
      :global(.light) & {
        background-color: color(alabaster);
        background-color: var(--theme-light-backgroundLight, color(alabaster));
      }
      :global(.dark) & {
        border: 1px solid color(alabaster);
        border: 1px solid var(--theme-dark-borderDark, color(alabaster));
      }
      :global(.dark) & {
        background-color: color(woodsmoke);
        background-color: var(--theme-dark-backgroundLight, color(woodsmoke));
      }
    }
browser output:
    .mySelector {
      padding: 6px;
    }
    .light .mySelector {
      border: 1px solid #141519;
      border: 1px solid var(--theme-light-borderDark, #141519);
    }
    .light .mySelector {
      background-color: #FCFCFC;
      background-color: var(--theme-light-backgroundLight, #FCFCFC);
    }
    .dark .mySelector {
      border: 1px solid #FCFCFC;
      border: 1px solid var(--theme-dark-borderDark, #FCFCFC);
    }
    .dark .mySelector {
      background-color: #141519;
      background-color: var(--theme-dark-backgroundLight, #141519);
    }
*/
/*
  @mixin generateThemeMappings(themeName: string, themeMap: map)
  helper function for generating list of theme variables and adding to existing map.
  This will add a new theme to the themes array and the theme color list.
*/
/*
  @mixin generateThemeVariables
  Auto-generates the entire list of theme variables for use in var() statements.
  Really should only be called in the html selector at the app root.
*/
/** this section generates a theme map for each theme **/
/** end theme generation **/
#page-afgeroomd {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
}
#page-afgeroomd .main-header {
  text-align: center;
  margin-bottom: 16px;
}
#page-afgeroomd .cashdrop {
  margin-bottom: 24px;
}
#page-afgeroomd .cashdrop .header {
  display: flex;
  align-items: center;
  line-height: 1.4em;
}
#page-afgeroomd .cashdrop .header .label {
  flex: 0;
  font-weight: bold;
  padding-right: 6px;
}
#page-afgeroomd .cashdrop .header .employee {
  flex: 1;
}
#page-afgeroomd .cashdrop .header .spacer {
  flex: 1;
}
#page-afgeroomd .cashdrop .header button {
  flex: 0;
  background: none;
  cursor: pointer;
  border: none;
}
.theme-light #page-afgeroomd .cashdrop .header button {
  color: var(--theme-theme-light-textDark, #000000);
}

.theme-dark #page-afgeroomd .cashdrop .header button {
  color: var(--theme-theme-dark-textDark, #EEEEEE);
}

#page-afgeroomd .cashdrop table {
  width: 320px;
}
#page-afgeroomd .date-header {
  font-size: 1.2em;
  text-align: center;
  font-weight: bold;
  margin-bottom: 24px;
}
#page-afgeroomd .no-cashdrops {
  text-align: center;
}
#page-afgeroomd .main-action-buttons {
  display: flex;
  justify-content: center;
  padding: 12px;
}
#page-afgeroomd .edit-modal {
  --width: 400px;
}
#page-afgeroomd .edit-modal h3 {
  padding: 0;
  margin: 6px 0;
  font-size: 1.1em;
}
#page-afgeroomd .edit-modal .entry-container {
  width: 100%;
}
#page-afgeroomd .edit-modal .entry-container thead {
  font-weight: bold;
}
#page-afgeroomd .edit-modal .entry-container thead .employee-id-cell {
  width: 60px;
}
#page-afgeroomd .edit-modal .entry-container thead .amount-cell {
  width: 100px;
  text-align: right;
}
#page-afgeroomd .edit-modal .entry-container .entry .employee-id {
  width: 28px;
}
#page-afgeroomd .edit-modal .entry-container .entry .amount {
  width: 60px;
  text-align: right;
}

/*# sourceMappingURL=page_afgeroomd.css.map */
