|
|
|
.status-container { |
|
display: flex; |
|
flex-direction: column; |
|
gap: 20px; |
|
} |
|
|
|
.status-module { |
|
background-color: white; |
|
border-radius: 8px; |
|
padding: 15px; |
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); |
|
} |
|
|
|
.status-module h3 { |
|
color: #5f3737; |
|
margin: 0 0 10px 0; |
|
font-size: 1.1em; |
|
padding-bottom: 8px; |
|
border-bottom: 2px solid #fdf5ee; |
|
} |
|
|
|
.module-content { |
|
font-size: 0.9em; |
|
} |
|
|
|
|
|
.event-text { |
|
color: #5f3737; |
|
line-height: 1.4; |
|
display: flex; |
|
align-items: center; |
|
} |
|
|
|
|
|
.location-name { |
|
font-weight: bold; |
|
color: #5f3737; |
|
margin-bottom: 5px; |
|
} |
|
|
|
.location-description { |
|
color: #666; |
|
line-height: 1.4; |
|
} |
|
|
|
|
|
.group-members { |
|
display: flex; |
|
flex-wrap: wrap; |
|
gap: 8px; |
|
} |
|
|
|
.group-member { |
|
background-color: #fdf5ee; |
|
padding: 5px 10px; |
|
border-radius: 15px; |
|
font-size: 0.9em; |
|
color: #5f3737; |
|
} |
|
|
|
.no-members { |
|
color: #666; |
|
font-style: italic; |
|
} |
|
|
|
|
|
.status-indicator { |
|
width: 8px; |
|
height: 8px; |
|
border-radius: 50%; |
|
margin-right: 8px; |
|
display: inline-block; |
|
} |
|
|
|
.status-active { |
|
background-color: #4CAF50; |
|
} |
|
|
|
.status-inactive { |
|
background-color: #999; |
|
} |
|
|