::-webkit-scrollbar {
  width: 0.5em;
}

::-webkit-scrollbar-track {
  border: none;
}

::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  border-radius: 50px;
}

html,
body {
  margin: 0px;
}

body {
  background-color: var(--web-bg);
}

p {
  margin-bottom: 5px;
  padding-right: 30px;
}

h1 {
  margin: 0px;
  font-weight: 900;
  text-align: center;
}

h2 {
  margin: 0px;
  font-weight: 900;
  line-height: 1.2;
}

h3 {
  margin: 0px;
  font-size: 1.6em;
  font-weight: 900;
}

ol {
  padding-right: 30px;
}

button {
  font-family: inherit;
  border: 0;
  padding: 0;
  border-radius: 0 !important;
  margin: 0;
  display: flex !important;
  flex-direction: column;
}

button:disabled:hover,
button[disabled]:hover {
  cursor: not-allowed;
}

.btn {
  flex-direction: row;
  border-radius: 12px;
  text-align: center;
  align-items: center;
  justify-content: space-evenly;
  font-size: large;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  cursor: pointer;
}

.regular {
  font-weight: 300;
}

.tb {
  display: table;
}

.td {
  display: table-cell;
}

.clear-fix {
  clear: both;
}

.img-responsive {
  width: 100%;
  max-width: 100%;
}

.videos {
  text-align: center;
}

.video--responsive {
  display: block;
  margin: auto;
}

.flex--space-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.text-padding {
  padding: 0.2rem 0.5rem;
}

.black-transp {
  background-color: rgba(0, 0, 0, 0.8);
}

.black-transp2 {
  background-color: rgba(0, 0, 0, 0.2);
}

.white-transp {
  background-color: rgba(255, 255, 255, 0.8);
}

.bgGrey {
  background-color: var(--web-bg);
  color: var(--non-black) !important;
}

.bgPic {
  background-size: cover;
}

.bgBlack a {
  color: #fff !important;
  text-decoration: underline;
}

.relative {
  position: relative !important;
}

.modal {
  width: 600px;
  background-color: white;
  border: 7px solid blue;
  border-radius: 14px;
  padding: 2.3rem;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.6s ease-in-out;
}

.modal-content {
  width: 100%;
  height: 50%;
  min-height: 220px;
  font-size: 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.fill {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.main-container {
  max-width: 850px;
  width: 100%;
  margin: auto;
}

.main-contents {
  width: 100%;
  margin: auto;
  /* overflow: hidden; */
}

#app {
  display: none;
  width: 100%;
  position: relative;
}

.cover-screen {
  display: none;
  z-index: 10;
}

.overlay-text {
  background-color: rgba(105, 94, 94, 0.8);
  position: absolute;
  padding: 5px;
  border-radius: 0 0 5px 0;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
  color: white;
  font-weight: 800;
}

.closeBtn {
  display: none;
  width: 32px;
  height: 32px;
  margin: 6px;
  padding: 6px;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 3;
}

.circle {
  height: 220px;
  width: 220px;
  border: 2px solid var(--DES-darkGreen);
  border-radius: 50%;
  position: absolute;
  top: -18%;
  left: -7%;
}
.bgDESprimary .circle {
  border-color: var(--qm-darkYellow);
}
.bgDESsecondary .circle {
  border-color: var(--qm-darkBlue);
}

.circle:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  top: 216px;
  left: 112px;
  background: var(--DES-darkGreen);
}
.bgDESprimary .circle:after {
  background: var(--qm-darkYellow);
}
.bgDESsecondary .circle:after {
  background: var(--qm-darkBlue);
}

.elem:hover .outer-circle {
  animation-name: hover-rotate1;
}
.elem:hover .inner-circle {
  animation-name: hover-rotate2;
}

.circle-br-corner {
  border-radius: 50%;
  position: absolute;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.circle-br-corner:after {
  content: "";
  border-radius: 50%;
  position: absolute;
}

.outer-circle {
  height: 180px;
  width: 180px;
  border: 2px solid var(--DES-darkGreen);
  bottom: -32%;
  right: -35%;
  animation-duration: 1.2s;
}
.bgDESprimary .outer-circle {
  border-color: var(--qm-darkYellow);
}
.bgDESsecondary .outer-circle {
  border-color: var(--qm-darkBlue);
}

.outer-circle:after {
  width: 0.6rem;
  height: 0.6rem;
  top: 62px;
  left: -3px;
  background: var(--DES-darkGreen);
}
.bgDESprimary .outer-circle:after {
  background: var(--qm-darkYellow);
}
.bgDESsecondary .outer-circle:after {
  background: var(--qm-darkBlue);
}

.inner-circle {
  height: 124px;
  width: 124px;
  border: 2px solid var(--qm-darkYellow);
  animation-duration: 2.2s;
  bottom: -21%;
  right: -24%;
}
.bgDESprimary .inner-circle {
  border-color: var(--qm-darkBlue);
}
.bgDESsecondary .inner-circle {
  border-color: var(--DES-darkGreen);
}

.inner-circle:after {
  width: 0.6rem;
  height: 0.6rem;
  top: 46px;
  left: -5px;
  background: var(--qm-darkYellow);
}
.bgDESprimary .inner-circle:after {
  background: var(--qm-darkBlue);
}
.bgDESsecondary .inner-circle:after {
  background: var(--DES-darkGreen);
}

.btn-close {
  background: none;
  border: 0;
  cursor: pointer;
  position: absolute;
  right: 20px;
  padding: 0;
  color: var(--non-black);
  outline: none;
  top: 32px;
}

.btn-close:hover {
  background: none;
  opacity: 0.7;
}

.btn-close i {
  font-size: 22px;
}
.bgBlack .btn-close i, .bgDESprimary .btn-close i {
  color: #fff;
}

.btn-container {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
.btn-container .btn {
  width: 30%;
  height: 50px;
}

.inner-content {
  margin: 10px 20px;
  position: relative;
}
.inner-content .sub-heading {
  margin: 0;
}

.flex-container {
  display: flex;
  width: 96%;
  height: 100%;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
}

.fillMobile {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 15;
}

.bgDESprimary .profile-card-container .heading, .bgDESprimary p, .bgDESsecondary .profile-card-container .heading, .bgDESsecondary p {
  color: var(--non-black);
}
.bgDESprimary .stat-name-text, .bgDESsecondary .stat-name-text {
  min-width: 4rem;
}
.bgDESprimary .stat-list-item:nth-of-type(even) p, .bgDESsecondary .stat-list-item:nth-of-type(even) p {
  color: white;
}

.muteBtn {
  height: 40px;
  width: 40px;
  padding: 0;
  box-shadow: none;
}
.muteBtn i {
  font-size: 20px;
  color: var(--non-black);
}
.muteBtn svg {
  height: 20px;
  color: var(--non-black);
}

.opacity {
  opacity: 0.6;
}

@keyframes hover-rotate1 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(45deg);
  }
}
@keyframes hover-rotate2 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(30deg);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.input-section, .controls-section {
  background: white;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.input-section h2, .controls-section h2 {
  color: #444;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.project-name-input {
  margin-bottom: 25px;
}

.project-name-input label, .csv-input label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #555;
}

#projectName {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

#projectName:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#csvData {
  width: 100%;
  height: 150px;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  resize: vertical;
  transition: border-color 0.3s ease;
}

#csvData:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px 5px 0 0;
}

.btn-primary {
  background-color: #667eea;
  color: white;
}

.btn-primary:hover {
  background-color: #5a6fd8;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background-color: #5a6268;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
}

.btn-chart {
  background-color: #28a745;
  color: white;
  margin-right: 15px;
}

.btn-chart:hover {
  background-color: #218838;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.btn-download {
  background-color: #17a2b8;
  color: white;
  margin-top: 15px;
}

.btn-download:hover {
  background-color: #138496;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(23, 162, 184, 0.3);
}

.download-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.sample-data {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

.sample-data h3 {
  margin-bottom: 15px;
  color: #555;
  font-size: 1.1rem;
}

.chart-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chart-section {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#chartContainer {
  min-height: 400px;
  padding: 20px;
}

.status {
  margin-top: 20px;
  padding: 15px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  display: none;
}

.status.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.status.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

.status.info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
  display: block;
}

/* D3.js chart styles */
.gantt-chart {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.gantt-bar {
  opacity: 0.8;
  stroke-width: 1;
  stroke: #fff;
}

.gantt-bar:hover {
  opacity: 1;
  stroke-width: 2;
}

.axis {
  font-size: 12px;
}

.axis-label {
  font-size: 14px;
  font-weight: 600;
  fill: #333;
}

.chart-title {
  font-size: 18px;
  font-weight: 700;
  fill: #333;
  text-anchor: middle;
}

.legend {
  font-size: 12px;
}

@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
  header h1 {
    font-size: 2rem;
  }
  .chart-buttons {
    flex-direction: column;
  }
  .btn-chart {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
  header h1 {
    font-size: 2rem;
  }
  .chart-buttons {
    flex-direction: column;
  }
  .btn-chart {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 2.2em;
  }
  h2 {
    font-size: 1.8em;
  }
  h3 {
    font-size: 1.5em;
  }
  h4 {
    font-size: 1.2em;
  }
  .main-container {
    width: 100%;
    max-width: 100%;
    min-height: -moz-min-content;
    min-height: min-content;
    max-height: -moz-max-content;
    max-height: max-content;
  }
  .btn-close {
    top: 16px;
  }
  .btn-close i {
    font-size: 32px;
  }
  .outer-circle {
    height: 65px;
    width: 65px;
    bottom: -34%;
    right: -9%;
  }
  .outer-circle:after {
    width: 0.6rem;
    height: 0.6rem;
    top: 19px;
    left: -4px;
  }
  .inner-circle {
    height: 45px;
    width: 45px;
    bottom: -25%;
    right: -7%;
  }
  .inner-circle:after {
    width: 0.6rem;
    height: 0.6rem;
    top: 14px;
    left: -5px;
  }
  .circle:after {
    top: 138px;
    left: 211px;
  }
}/*# sourceMappingURL=app.css.map */