.system-status-container {
	max-width: 1200px;
	margin: 0 auto;
	background-color: #1f2937;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	padding: 24px;
	color: #9ca3af;
	margin-top: 24px;
	--tw-border-opacity: 1;
	border-color: rgb(229 231 235 / var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

:is(.dark .system-status-container) {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity));
}

.system-status-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	--tw-bg-opacity: 1;
  	background-color: rgb(249 250 251 / var(--tw-bg-opacity));
	margin: -24px -24px 24px -24px;
	padding: 24px;
	border-radius: 8px 8px 0 0;
}

:is(.dark .system-status-header-container) {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
}

.system-status-container h1 {
	font-weight: 600;
	margin: 0;
}

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

.system-status-refresh-button {
	background-color: #1A1F2C;
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.2s ease;
}

.system-status-refresh-button:hover {
	background-color: #1f2937;
}

.system-status-refresh-button:active {
	transform: translateY(1px);
}

.system-status-table th, 
.system-status-table td {
	padding: 16px;
	text-align: left;
	border-bottom: 1px solid #444;
	color: #9ca3af;
}

@media screen and (max-width: 768px) {
    .system-status-table td:nth-child(3),
    .system-status-table th:nth-child(3),
	.system-status-table td:nth-child(4),
    .system-status-table th:nth-child(4) {
        display: none;
    }
}

.system-status-table th {
	font-weight: 600;
	color: #111827;
}

:is(.dark .system-status-table th) {
	color: rgb(249 250 251);
}

.status-indicator-image {
	width: 16px;
	height: 16px;
	display: inline-block;
	margin-right: 8px;
}

.status-up-image {
	color: #00C853;
}

.status-down-image {
	color: #FF3D00;
}

.system-status-last-updated {
	color: #9ca3af;
	font-size: 0.9em;
	margin-top: 20px;
}