body
{
    background: #191919; 
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #FFFFFF;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: "Verdana";
    font-weight: thin;
}
  
.content {
    margin-top: 50px;
}  

.dashboard {
    background-color: #191919;
    padding-top: 10px;
}

.app-bar {
    background-color: #222222;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 20px solid #191919;
}

.title-box {
    border: 2px solid #222222;
    border-radius: 5px;
    padding: 10px;

}

.dashboard-title {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1d1d1d;
    color: white;
    font-family: "Verdana";
    font-size: 40px;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
    padding: 10px 0;
    z-index: 999;
    font-weight: normal;
    border-bottom: #191919;
    border-bottom-style: solid;
    border-bottom-width: 4px;
}
  
  

.content {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
  
  


@media (max-width: 1800px) {
    .graph-container {
      width: 100%;
    }
}

.subplots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
  
  
  
.subplot {
    border-radius: 20px;
    padding: 10px;
    margin: 10px;
    background-color: #222222;
}
  
  

.graph-container .column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
  
  
.rounded-corners {
    border-radius: 10px;
}
  
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}
  