.container {
    max-width: 800px;
    margin-top: 30px;
}

.response-area {
    margin-top: 20px;
}

.hidden {
    display: none;
}

.alert {
    margin-top: 20px;
}

.logo-container {
    margin-bottom: 20px;
}

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

.status-indicator.connected {
    background-color: #28a745;
}

.status-indicator.disconnected {
    background-color: #dc3545;
}

/* Code block styling */
pre {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    margin: 0;
    overflow: auto;
    max-height: 500px;
    width: 100%;
    border: 1px solid #dee2e6;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.05);
}

code {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
    white-space: pre-wrap;
}

/* XML specific styling */
code.xml {
    color: #333;
}

code.xml .tag {
    color: #0074D9;  /* Blue for tag names */
    font-weight: bold;
}

code.xml .attr {
    color: #FF851B;  /* Orange for attribute names */
}

code.xml .value {
    color: #2ECC40;  /* Green for attribute values */
}

/* JSON styling could also be enhanced */
code.json {
    color: #333;
}
