body {
  padding: 20px;
  font-family: "Exo 2", sans-serif;
  background-color: #fff;
}
.table-responsive {
  margin: 20px auto;
  max-width: 90%;
}
.table {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.table th, .table td {
  vertical-align: middle;
  text-align: center;
}
.table th {
  background-color: #343a40;
  color: #ffffff;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f2f2f2;
}

div.summary-line-legend {
  display: flex;
  justify-content: center;
  align-items: center;
}

h1.title {
  font-family: "Exo 2", serif;
  font-weight: bold;
  color: #97233F;
  font-size: 2.5vw;
  padding: 20px;
}

h2.placeholder {
  font-size: 6px;
  color: white;
}

h3.card-title {
  font-family: "Exo 2", sans-serif;
  font-size: 20px;
  margin: 0px;
}

div.container{
  width: 90%;
  max-width: 2000px;
}

#logout-button{
  margin: 20px;
}

.logout-link {
  margin-left: 20px;
}

span.bold-span {
  font-weight: bold;
}

.swarmplot-row {
  height: 50px;
}

.plot-table {
  width: 90%; /* Set a width for the table */
  margin: 0 auto; /* Center the table horizontally */
  border-collapse: collapse; /* Optional: for better table styling */
}

.plot-table th, .plot-table td {
  padding: 10px; /* Optional: for better spacing */
  text-align: center; /* Optional: center text within cells */
}

.plot-table th {
  background-color: #343a40; /* Optional: header background color */
  color: #ffffff; /* Optional: header text color */
}

.collapsible-content {
  display: none;
  margin-top: 10px;
}
.collapsible-content.show {
  display: block;
}

table {
  border-collapse: separate;
  border-spacing: 7px 0;
}

.pane-title {
  text-align: center;
  font-size: 1.5vw; /* Adjust the value as needed */
  white-space: nowrap; /* Prevents the text from wrapping */
}

.link-button {
  background: none; 
  border: none; 
  color: #007bff; 
  text-decoration: none; 
  cursor: pointer; 
  font: inherit; 
  padding: 0; 
}

.link-button:hover {
  color: #0056b3; /* Change color on hover to standard link hover color */
  text-decoration: none; /* Remove underline on hover */
}

th, td {
  margin: 10px;
  white-space: nowrap;
  padding: 0 10px;
  text-align: center;
}

.pick-table {
  width: 100%;
  border-collapse: collapse;
}

.pick-table-header, .pick-table td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.spacer {
  display: inline-block; /* Ensure the span behaves like an inline element */
  width: 40px; /* Set the minimum width */
  margin: 0 10px; /* Adjust the margin as needed */
}

.section {
  margin-bottom: 20px; /* Adjust the bottom margin as needed */
}

@media (max-width: 768px) {
  .table th, .table td {
      font-size: 20px; /* Adjust font size for smaller screens */
  }
}
@media (max-width: 480px) {
  .table th, .table td {
      font-size: 30px; /* Further adjust font size for very small screens */
  }
}
.legend-row {
  text-align: center;
}

#legend-container {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.nav-bar{
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 20px auto;
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically if needed */
  padding-left: 20px; /* Adjust the value as needed */
  margin-left: 20px; /* Alternatively, you can use margin */
  margin-bottom: 20px;;
}

.pick-table-row {
  height: 50px; /* Adjust the height to add more space between rows */
}

.horizontal-nav-element {
  margin-right: 10px;
  position: relative; 
  text-decoration: none;
}


.horizontal-nav-element:hover {
  text-decoration: underline; 
}

.dot-separator {
  margin-left: 5px; 
  margin-right: 5px; 
  color: black;
  text-decoration: none;
}

td.team-abb {
  width: 50px;
  max-width: 50px; /* Set the maximum width */
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Hide overflow content */
  text-overflow: ellipsis; /* Add ellipsis (...) for overflow text */
}

td.swarmplot-cell {
  padding: 0px;
  margin: 0px;
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
} 

.pick-input {
  width: 40px; 
  margin: 15px;
}
.wagers-container {
  border: 2px solid #ccc; /* Add a border to visually separate the container */
  padding: 15px; /* Add padding inside the container */
  margin: 20px 0; /* Add margin to separate it from other elements */
  background-color: #dde2ef; /* Light background color to distinguish it */
  border-radius: 8px; /* Rounded corners */
  display: inline-block;
}

.wagers-list {
  list-style-type: none; /* Remove default list styling */
  padding: 0; /* Remove default padding */
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap to the next line */
}

.wager-item {
  flex: 1 1 calc(25% - 10px); /* Allow up to three items per row */
  margin: 5px; /* Add margin between items */
  padding: 10px; /* Add padding inside each item */
  background-color: #fff; /* White background for each item */
  border: 1px solid #ddd; /* Light border around each item */
  border-radius: 4px; /* Rounded corners for each item */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  text-align: center; /* Center text inside each item */
}

h3.top-score {
  text-align: center;
}

span.score {
  font-size: xx-large;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: inline-block;
  width: 150px; /* Adjust the width as needed */
  text-align: right;
  margin-right: 10px;
}

.form-group input {
  width: 300px; /* Adjust the width as needed */
}

.form-group button {
  margin-left: 160px; /* Adjust the margin to align with the input fields */
}

.form-errors {
  color: red;
  margin-left: 160px; /* Align error messages with input fields */
}

.dropzone {
  border: 1px solid #ccc;
  min-height: 40px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.draggable {
  cursor: move;
}

.pick-input {
  width: 100px;
}

#wagers-list {
  list-style-type: none;
  padding: 0;
}

#wagers-list li {
  padding: 5px;
  font-size: 18px;
}

.monkey {
  color: #9eb4ff;
}

.beaver {
  color: #ff6100;
}

p.note {
  margin: 14px 0 0 0px;
  font-size: 10px;
}

.input-list {
  display: flex;
}

.column {
  flex: 50%
}

svg#fuel-mix-histogram-carbon-chart {
  height: 100%;
  width: 100%;
}

p.input_string{
  text-align: center;
}

div#prediction{
  text-align: center;
}
div#advice{
  text-align: center;
}

hr.spacer-row {
  margin-top: 16px;
  border: 0;
}

.bottom-pad{
  padding-bottom: 10px;
}

.parallelogram {
  width: 20px;
  height: 100%;
  transform: skew(-20deg);
  background: #9eb4ff;
  outline-style: none;
}

.body-row {
  margin: 10px 0 10px 0;
}

line {
  stroke-width: 20px;
}
line.left-line {
  stroke: #dddde3;
}
line.mid-line {
  stroke: #9eb4ff;
}
line.right-line {
  stroke: #dddde3;
}
line.way-right-line {
  stroke: #9eb4ff;
}
line.super-right-line {
  stroke: #dddde3;
}
line.ultra-right-line {
  stroke: #9eb4ff;
}
line.ultra-far-right-line {
  stroke: #dddde3;
}

.bold{
  font-weight: bold;
}

.title-bar {
  background-color: #fff;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  height: 100%; /* Ensure the height is 100% to center vertically */
  margin: 20px 0; /* Add margin for spacing */
}

.charging-card-header {
  color: white;
  background-color: #9eb4ff;
  text-align: center;
  font-size: 60px;
}

.card-header {
  color: white;
  background-color: #9eb4ff;
  text-align: center;
}
.card {
  overflow: visible;
}

#marginal-fuel-identifier {
  padding-top: 10%;
}

#marginal-fuel-text {
  padding-bottom: 10%;
}

.row, .card-body, canvas {
  overflow: visible;
}

div#marginal-fuel-identifier {
  text-align: center;
  overflow: hidden;
}

div#marginal-fuel-text {
  text-align: center;
  font-family: "Exo 2", sans-serif;
  font-size: 18px;
}

p.update-string {
  margin-top: 10px;
  font-size: 15px;
}

.circleBase {
  border-radius: 50%;
  height: 75px;
  width: 75px;
  display: inline-block;
  margin: 10px;
}

.coal {
  color: #010101;
  background-color: #010101;
}

.oil {
  color: #555555;
  background-color: #555555;
}

.natural_gas {
  color: #aa8888;
  background-color: #aa8888;
}

.nuclear {
  color: #bbbbcc;
  background-color: #bbbbcc;
}

.landfill_gas {
  color: #ffccaa;
  background-color: #ffccaa;
}

.refuse {
  color: #ddaaaa;
  background-color: #ddaaaa;
}

.wood {
  color: #603000;
  background-color: #603000;
}

.hydro {
  color: #0000A0;
  background-color: #0000A0;
}

.wind {
  color: #9eb4ff;
  background-color: #9eb4ff;
}

.solar {
  color: #dba800;
  background-color: #dba800;
}

.other {
  color: #bbbbbb;
  background-color: #bbbbbb;
}

.good_marginal {
  color: #829e90;
}

.bad_marginal {
  color: #890000;
}

.medium_marginal {
  color: #9eb4ff;
}

.clean {
  fill: #829e90;
}

.dirty {
  fill: #890000;
}

.medium {
  fill: #9eb4ff;
}

.hot{
  color: #cc0000
}

.med-hot{
  color: #f59802
}

.medium{
  color:#257804
}

.med-cool{
  color:#03609e
}

.cool{
  color: #6d28f7
}

/* Project Detail Styles */
.project-detail .card {
  border: none;
  border-radius: 8px;
}

.project-detail .card-header {
  border-radius: 8px 8px 0 0 !important;
  font-weight: 600;
}

.project-detail .badge {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
}

.project-detail .list-group-item {
  border-left: none;
  border-right: none;
  padding: 0.75rem 0;
}

.project-detail .list-group-item:first-child {
  border-top: none;
}

.project-detail .list-group-item:last-child {
  border-bottom: none;
}

.project-detail img {
  border-radius: 4px;
  transition: transform 0.2s ease-in-out;
}

.project-detail img:hover {
  transform: scale(1.02);
}

.project-detail .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* Text content with preserved line breaks */
.project-detail .card-body div[style*="white-space: pre-line"] {
  line-height: 1.6;
  color: #333;
}

/* Project Listing Styles */
.project-card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  border: none;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}

.project-link {
  color: #97233F;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}

.project-link:hover {
  color: #6d1b30;
  text-decoration: none !important;
}

.project-card .card-text {
  color: #666;
  line-height: 1.5;
}

.project-card .badge {
  font-size: 0.75rem;
  font-weight: normal;
}

.pane {
        padding: 10px;
        border: 1px solid #ddd;
        margin-bottom: 10px;
}
.content {
    padding: 20px;
    background-color: #f9f9f9;
}
  
  /* Message board styles */
.message-board {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: white;
    border-radius: 5px;
}

.message {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.message:last-child {
    border-bottom: none;
}

.message-author {
    font-size: 0.9em;
    margin-right: 10px;
}

.message-time {
    font-size: 0.8em;
    color: #666;
    float: right;
}

.message-text {
    margin-top: 4px;
    font-size: 0.95em;
}

.message-input-section {
    margin-bottom: 15px;
}

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