/* Global Styles */

* {
    box-sizing: border-box;
    text-align: left;
    font-family: Arial, sans-serif;
}

/* Container setup */
.container {
    display: flex;
    height: 100vh;
}

/* Sidebar container */
.sidebar {
    width: 310px;
    color: #ffffff;
    background-color: white;
    display: flex;
    flex-direction: column;
    padding-top: 2px;
    min-height: 200vh;
    height: 940px;
    overflow: auto;
}

.sidebar .logo {
    text-align: center;
    margin-top: 16px;
}

.sidebar .logo img {
    width: 120px;
    margin-bottom: 10px;
    margin-left: -40px;
}

.sidebar .logo h2 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-left: 36px;
}

ul.nav-links {
    overflow-y: auto;
}

ul.nav-links li.content-link {
    padding: 0px 10px;
}

ul.nav-links li.content-link a {
    color: #000;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    display: block;
    font-weight: 500;
    border-radius: 4px;
    padding: 6px;
}

ul.nav-links li.content-link a:hover {
    color: #ffffff;
    background-color: #85878D;
}

.data-link.active {
    font-optical-sizing: auto;
    background-color: #85878D;
}

ul.nav-links li ul {
    padding-left: 10px;
    margin-top: 5px;
}

ul.nav-links li ul li.content-link {
    padding-left: 10px;
    font-size: 12px;
}

/* Content area */
.content {
    width: calc(100% - 300px);
    display: block;
    position: relative;
    background-color: #ffffff;
    min-height: 100vh;
}

.content-title {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin: 25px;
    text-align: center;
}

#content-area {
    overflow: auto;
    border-radius: 8px;
    background-color: #edf2f7;
    min-height: calc(100vh - 200px);
    border: 1px solid #dddddd;
    margin: 8px;
}

.paragraph-content {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    margin: 10px;
    padding: 10px;
    border-radius: 8px;
}

.paragraph-content p {
    text-align: justify;
    font-size: 14px;
    margin-bottom: 15px;
    margin-left: 14px;
}

.footer {
    text-align: center;
    padding: 10px;
    background-color: #f8f8f8;
    color: #333;
    border: 1px solid #dddddd;
    position: absolute;
    width: 99%;
    margin-left: 8px;
    box-sizing: border-box;
    border-radius: 8px;
}

.footer p {
    font-family: Arial, sans-serif;
    margin: 0;
    font-size: 12px;
    text-align: center;
}

.info .row {
    font-family: Arial, sans-serif;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 14px;
}

.label {
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #333333;
    margin: 12px;
}

.value {
    color: #555555;
}

#data-table {
    font-family: Arial, sans-serif;
    width: 96%;
    border-collapse: collapse;
    margin: 10px;
    font-size: 12px;
    text-align: left;
}

#data-table th {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    padding: 8px;
    font-weight: bold;
    font-size: 13px;
    text-align: left;
    border: 1px solid black;
}

#data-table td {
    font-family: Arial, sans-serif;
    padding: 5px;
    border: 1px solid black;
    font-size: 12px;
    text-align: left;
}

#data-table tr:nth-child(odd) {
    background-color: #dddddd;
}

#data-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

h2 {
    margin-top: 13px;
    margin-left: 11px;
    margin-bottom: 14px;
    text-decoration: underline;
}

.toggle {
    cursor: pointer;
}

.toggle::before {
    color: black;
    display: inline-block;
    content: "▶";
    margin-right: 4px;
}

.toggle.open::before {
    content: "▼"
}

#clear-request-params {
    background: transparent;
    border: 2px solid gray;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
    color: #3b4151;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 23px;
    transition: all .3s;
}
