.section {
    background-color: #2b2b2b;
    min-height: 1000px;
    height: auto;
}
.content-wrap {
    width: 100%;
    min-height: 832px;
    box-sizing: border-box;
	padding: 20px 0;
}
.catalog-container {
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
	max-width: 300px;
}

th {
    background-color: #007BFF;
    color: white;
}

td.online {
    color: green;
}

td.offline {
    color: red;
}