body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: linear-gradient(to right, #f5f7fa, #c3cfe2);
    color: #222;
}

h1 {
    text-align: center;
    color: #2a2a72;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h2 {
    color: #1d3557;
    margin-bottom: 1rem;
}

.basic-info,
.connection-status,
.comparison-table {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 5px solid #1d3557;
}
.info-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}
.info-item {
    padding: 1rem;
    background: #e8f0fe;
    border-radius: 8px;
    border-left: 4px solid #0077b6;
}

.label {
    font-weight: bold;
    color: #023047;
}

.value {
    color: #001f54;
    font-size: 1.2rem;
}

table {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}

th {
    background-color: #f1f8ff;
    color: #000;
}

th,
td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

tr:hover {
    background-color: #f0f8ff;
}

.toggle-btn {
    background-color: #0077b6;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    margin-top: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.toggle-btn:hover {
    background-color: #023e8a;
}

#connectionStatus {
    font-weight: bold;
}

#connectionStatus.green {
    color: #28a745;
}
.handleOverflow{
    max-height: 200px;
    overflow-y: auto;
}
#connectionStatus.red {
    color: #dc3545;
}

.log-container {
    margin-top: 1rem;
}

.log-entry {
    border-left: 4px solid #d32f2f;
    background-color: #fff0f0;
    padding: 1rem;
    margin-bottom: 10px;
    border-radius: 8px;
}

.stack-trace {
    background-color: #f8f9fa;
    border-left: 4px solid #6c757d;
}