/**
 * Offline Indicator Styles
 * Simple icon indicator shown when application is offline
 */
.offline-indicator {
  display: flex;
  align-items: center;
  background-color: #f44336;
  color: white;
  font-weight: bold;
  padding: 4px 6px;
  border-radius: 3px;
  margin-right: 8px;
}

.offline-indicator md-icon {
  font-size: 16px;
  width: 16px;
  height: 16px;
  margin-right: 3px;
}
