You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
991 B
CSS

.App {
min-height: 100vh;
background-color: #f5f5f5;
display: flex;
flex-direction: column;
}
.status-bar {
background: white;
padding: 12px 20px;
display: flex;
align-items: center;
gap: 20px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.status-connected {
color: #4CAF50;
font-size: 14px;
font-weight: 500;
}
.status-disconnected {
color: #f44336;
font-size: 14px;
font-weight: 500;
}
.status-error {
color: #f44336;
font-size: 12px;
}
.container {
max-width: 1200px;
margin: 20px auto;
padding: 0 20px;
flex: 1;
width: 100%;
}
.error-message {
background-color: #f8d7da;
color: #721c24;
padding: 12px 20px;
border-radius: 4px;
margin-bottom: 20px;
border: 1px solid #f5c6cb;
}
.loading {
text-align: center;
padding: 40px;
font-size: 18px;
color: #666;
}
@media (max-width: 768px) {
.status-bar {
flex-direction: column;
align-items: flex-start;
gap: 8px;
}
.container {
padding: 0 10px;
}
}