48 lines
798 B
CSS
48 lines
798 B
CSS
.room-stats-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 20px;
|
|
}
|
|
|
|
.text-stats {
|
|
background-color: #f9f9f9;
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.stats-info {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 20px;
|
|
}
|
|
|
|
.stat {
|
|
padding: 10px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.stat p {
|
|
margin: 0;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.stat ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 5px 0;
|
|
}
|
|
|
|
.stat ul li {
|
|
margin: 5px 0;
|
|
}
|
|
|
|
.diagram {
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|