td, th {
    padding: 10px
}
tr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

  /* Style for the navigation bar */
ul.nav-wide {
    list-style-type: none;
    margin: 10px;
    overflow: hidden;
    background-color: #ffff;
}

/* Style for the active link */
ul.nav-wide li a.active {
    background-color: #4CAF50;
    color: #FFF;
}

#burger-dropdown .nav-link.active {
  text-decoration: underline;
}

.nav-wide {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav-wide ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #fffF;
}

.nav-wide li a {
    display: block;
    color: #000;
    text-align: center;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
}

div#burger-dropdown {
    display: none;
    position: absolute;
    z-index: 9999; /* Adjust the value as needed */
    background: var(--wwave-blue);
    border-radius: 10px;
    padding: 5px 15px;
    font-size: 20px;
}

#burger-dropdown a {
    color: #ffff;
    padding: 10px 5px;
    text-decoration: none;
}

.transparent-logo {
    margin-right: 10px;
}

.transparent-logo {
    max-width: 100px;
}

#burger {
    color: #000;
    display: none;
    font-size: 30px
}

#nav-dropdown{
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    padding-right: 25px;
}

div#nav-dropdown:hover div#burger-dropdown {
    display: flex;
    flex-direction: column;
    top: 100%;
}

  div.transparent_logo {
    position: relative;
  }

img.transparent-logo {
  /* position: absolute;
  left: 50%; */
  /* Additional styling for the image */
  max-width: 100px;
}

.centered-container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#jobs-panel, #appointments-panel, #settlements-panel, #endpoints-panel, #products-panel {
    display: none;
}

.settlements {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.settlements label {
    padding: 15px;
}

.get-settlement {
    font-size: 20px;
    padding: 10px;
    margin: 5px;
    border-radius: 12px;
}

/* Set the width and height of the scroll bar */
::-webkit-scrollbar {
  width: 12px; /* adjust as needed */
  height: 12px; /* adjust as needed */
}

/* Track (background) of the scroll bar */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* adjust as needed */
}

/* Handle (thumb) of the scroll bar */
::-webkit-scrollbar-thumb {
  background: #888; /* adjust as needed */
  border-radius: 6px; /* adjust as needed */
}

/* On hover, style the handle of the scroll bar */
::-webkit-scrollbar-thumb:hover {
  background: #555; /* adjust as needed */
}



@media only screen and (max-width:726px) {
    #burger {
        display: block;
    }
    ul.nav-wide {
        display: none;
    }
    #navbar {
        width: 80%;
        justify-content: space-between;
    }
}

div.table-wrapper {
  max-width: 85%; /* set the desired height */
    max-height: 300px;
  overflow: auto; /* add scroll bars when necessary */
}

div.settlement-report-table {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.settlement-report-table h2 {
    text-align: center;
}
/* The Modal (background) */
#uploadModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
    padding-top: 100px; /* Positioning from the top */
}

/* Modal Content */
#uploadModal > span {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #000;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

#uploadModal > p {
    background-color: #fefefe;
    margin: auto; /* Centered horizontally */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Adjust as needed */
    border-radius: 5px; /* Rounded corners */
    text-align: center; /* Center text */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); /* Shadow */
}
