body {
    font-family: sans-serif;
    background-color: #f2f2f2;
    color: #333;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #ff6f00;
    color: white;
    padding: 20px;
    border-radius: 5px;
}

h1 {
    margin: 0;
}

main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
}

section {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
}

.live-services {
    grid-column: 1 / 4;
    display: flex;
    justify-content: space-between;
}

.service-status {
    display: flex;
}

.service {
    text-align: center;
    margin: 0 20px;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 5px;
}

.status-indicator.active {
    background-color: #4caf50;
}

.status-indicator.inactive {
    background-color: #f44336;
}

.server-info, .server-health {
    grid-column: span 1;
}

.progress-bar {
    background-color: #ddd;
    border-radius: 5px;
    height: 10px;
    margin-top: 5px;
}

.progress {
    background-color: #ff6f00;
    height: 100%;
    border-radius: 5px;
}

.api-modules {
    grid-column: 1 / 4;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #ff6f00;
}

.tab-button {
    background-color: transparent;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
}

.tab-button.active {
    border-bottom: 2px solid #ff6f00;
    font-weight: bold;
}

.tab-content {
    display: none;
    padding-top: 20px;
}

.tab-content.active {
    display: block;
}

.api-list {
    width: 25%;
    float: left;
}

.api-endpoint {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.api-endpoint.post span {
    color: #ff6f00;
    font-weight: bold;
}

.api-endpoint.put span {
    color: #007bff;
    font-weight: bold;
}

.api-details {
    width: 70%;
    float: right;
}

.request-demo, .api-performance, .response-data {
    margin-bottom: 20px;
}

#request-form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}

#request-form button {
    background-color: #ff6f00;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

pre {
    background-color: #eee;
    padding: 10px;
    border-radius: 5px;
}

.logs {
    grid-column: 1 / 4;
    display: flex;
}

.error-log, .active-users {
    width: 50%;
}

#error-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#error-list li {
    color: #f44336;
}
