body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    height: 100vh;
    background-color: #f4f4f4;
}
#sidebar {
    width: 30%;
    background: #2c3e50;
    color: white;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
}

#vrow_curuser{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; /* Ensures it spans the full width */
  padding: 0px;
  /*border: 2px solid black;*/
}

#btnLogout{
    padding: 10px 10px;
    font-size: .7rem;
    text-align: center;
    max-width: 50px;
}
.timestamp {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s;
}
.timestamp:hover {
    background: rgba(255, 255, 255, 0.2);
}
 #content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 20px;
}
  #controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
    padding: 10px;
    background: #ecf0f1;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

button {
    padding: 10px 30px;
    font-size: 1.2rem;
    text-align: center;
    color: #fff;
    background-color: #0f8b8d;
    border: none;
    border-radius: 5px;
    margin-top: 15px;
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 10px auto;
  }

  button:hover{
    background-color: #0a5c5e;
  }

  #cmbFloodNodes option {
    font-size: 20px;  /* Adjust the font size as needed */
  }

  #cmbFloodNodes{
    font-size: 20px;
    padding: 5px;
  }