/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

html {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #353535;
  color: #e6e6e6;
  height: 100%;
}

body {
  height: 100%;
}

.hide {
  display: none !important;
}

#main {
  display: flex;
  flex-basis: 375px;
}

#workspace {
  position: relative;
  width: 100%;
  overflow-y: scroll;
  height: 100%;
  scrollbar-width: none;
  padding-top: 100px;
}
#workspace #workspace-header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 90px;
  padding: 0 10px;
}

.truncate-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#modal {
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

#login {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #636363;
  outline: 1px solid #181818;
  background: #444;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  margin: 10px;
}
#login h2 {
  text-align: center;
}
#login label {
  margin-bottom: 5px;
}
#login .input-container {
  display: flex;
  flex-direction: column;
}
#login .input-container input {
  margin-bottom: 20px;
  border-radius: 5px;
  border: solid #000 1px;
  background: #353535;
  padding: 10px;
  color: #fff;
}
#login #sign-in {
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background: #ffa600;
  font-weight: 600;
}
#login .password-container {
  position: relative;
}
#login .password-container #show-password {
  position: absolute;
  right: 10px;
  top: 13px;
  border-radius: 15px;
  border: solid 1px #000;
  background: #444;
  font-size: 0.75rem;
}

#app {
  display: flex;
  grid-template-columns: 375px 1fr;
  height: 100%;
}

#main {
  position: fixed;
  border-left: solid #171717 1px;
  left: 375px;
  width: calc(100% - 375px);
  height: 100%;
  padding: 10px;
  overflow-y: auto;
}

#sidebar {
  width: 375px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
#sidebar #header {
  height: 75px;
  position: fixed;
  width: 375px;
  background: #353535;
}
#sidebar #footer {
  height: 32px;
  font-size: 0.875rem;
  padding: 8px;
  position: fixed;
  bottom: 0;
  width: 375px;
  background: #353535;
}
#sidebar #jobs-container {
  height: 100%;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 75px 0 34px 0;
}

#header {
  padding: 10px;
}

#footer {
  padding: 10px;
}

#num-chart {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#num-chart div {
  border: solid #222 1px;
  padding: 10px;
  flex-basis: 120px;
  flex-grow: 1;
  margin: 5px;
  text-align: center;
  background: #444;
  border-radius: 5px;
}

#jobs-container ul, .jobs-container ul {
  padding: 0 0 42px 0;
  margin: 0;
  list-style: none;
}
#jobs-container ul li, .jobs-container ul li {
  border: 1px solid #636363;
  outline: 1px solid #181818;
  background: #444;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  margin: 10px;
}
#jobs-container ul li h2, .jobs-container ul li h2 {
  font-weight: 600;
  font-size: 1.25rem;
}
#jobs-container ul li h3, .jobs-container ul li h3 {
  font-weight: 400;
  font-size: 0.875rem;
  color: #ffa600;
}
#jobs-container ul li div, .jobs-container ul li div {
  font-size: 1rem;
  color: #b5b5b5;
}

.jobs-container {
  max-width: 375px;
  min-width: 375px;
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
}

.project-time-log {
  width: 100%;
  margin-bottom: 10px;
  border: 3px solid #222222;
  border-collapse: collapse;
  background: #444;
}
.project-time-log th, .project-time-log td {
  padding: 10px;
  border: 1px solid #222222;
}
.project-time-log .billable-hours, .project-time-log .running-total {
  min-width: 75px;
  text-align: right;
}
.project-time-log .service {
  width: 100%;
}
.project-time-log .billable-hours {
  font-weight: 600;
}
.project-time-log .table-footer-total {
  font-weight: 600;
  text-align: right;
  color: #ffa600;
}
.project-time-log .table-footer-blank {
  font-weight: 900;
  text-align: right;
}

#job-detail-pane {
  display: flex;
  border: solid red 1px;
  width: 100%;
  gap: 10px;
}
#job-detail-pane #job-info {
  flex-grow: 2;
  flex-basis: 50%;
  border: solid blue 1px;
}
#job-detail-pane .side-module {
  width: 375px;
  flex-grow: 1;
  border: solid yellow 1px;
}

#accounts {
  width: 375px;
  min-width: 375px;
}
#accounts ul {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
}
#accounts ul li {
  padding: 10px;
  border: solid 1px #222;
  border-radius: 5px;
  background: #444;
  margin-bottom: 5px;
}

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