
body#libra {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 14px; /* or you can specify a size in px, em, etc. */
  color: #000;
  background-color: #fff;
}


.header {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 10px 20px;
  border-bottom: 2px solid #005a9c;
}

.logo {
  height: 50px;
  margin-right: 20px;
}

.title {
  margin: 0;
  font-size: 24px;
  color: #005a9c;
  flex-grow: 1;
}

.content {
  padding: 20px;
}

#upgradeInstructions {
  border: 1px solid black;
  background-color: #f0f0f0;
  padding: 15px;
  margin-top: 20px;
  display: none;
  width: auto;
  max-width: 1000px;
  border-radius: 10px; /* This will create rounded corners with a 10px radius */
}


#upgradeInstructions h4 {
  margin-bottom: 10px;
}

#upgradeInstructions ul {
  margin-top: 5px;
  padding-left: 20px;
}

#upgradeInstructions li {
  font-size: 14px;
  margin-bottom: 5px;
}

.bluebar {
  background-color: #005a9c; /* Blue color */
  height: 3px; /* Height of the blue line */
  width: 100%; /* Full width */
  margin-top: 20px; /* Optional: Adds some space above the blue line */
}


#framework-footer {
  font-size: 11px;
  margin-top: 10px;
  text-align: center;
}

#framework-footer a {
  color: #366;
  text-decoration: none;
}

#server-selection-form {
  display: flex;
  flex-direction: column;
  max-width: 530px; /* Set a max-width for the form if desired */
  margin: 1 auto; /* Center the form in the page */
}


/* Ensure labels do not break lines and set a fixed width */
.dropdown-container label {
    white-space: nowrap;
    width: 600px; /* Set a fixed width for labels to accommodate the longest label */
    margin-right: 10px; /* Add some space between label and select */
}

/* Ensure dropdowns have a fixed width and do not change size based on their content */
.dropdown-container select {
    width: 600px; /* Set a fixed width for selects */
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box; /* Include padding and border in the element's total width */
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Add ellipsis for overflow text */
}

/* Style the dropdown containers to be flex containers */
.dropdown-container {
    display: flex;
    align-items: center;
    margin: 8px 0; /* Add some margin for spacing */
}



body, html {
  margin: 0;
  padding: 0;
  width: 100%;
}



