body {
    font-family: 'Helvetica', Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: lightblue;
    padding: 0.5em;
    width: 100%;
}
.help-text {
    margin-top: 1em;
    font-size: 14px;
    text-align: left;
    color: #666;
    font-style: italic;
}

.ui.table {
    word-wrap: break-word;
    table-layout: fixed;
}

.headerText {
    font-size: large;
    white-space: nowrap;
}
.connect-link {
    border-radius: 5px;
    padding: 8px 16px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 250px;
    text-align: right;
}

.connect-link:hover {
    text-decoration: underline;
}

.light-blue {
    background-color: #add8e6;
}

.ui.container {
    margin-top: 2em;
}

.container {
    width: 80%;
    margin: 2em auto;
}

.tabs {
    margin-top: 2em;
}

.ui.tab.segment {
    min-height: 200px;
}

#message-panel {
    position: fixed;
    bottom: 20px;
    left: 5%;
    right: 5%;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    color: white;
    z-index: 1000;
    text-align: center;
    box-sizing: border-box;
    white-space: pre-wrap;
    max-width: 90%;
    width: auto;
}

  
#message-panel.success {
background-color: #3cba54;
}
  
#message-panel.error {
background-color: #f44336;
}
  
