.user-info-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  font-size: 15px;
  background-color: inherit;
  color: inherit;
  border: 1px solid rgba(128,128,128,0.3);
}
.user-info-table th,
.user-info-table td {
  border: 1px solid rgba(128,128,128,0.3);
  padding: 10px 12px;
  text-align: left;
  vertical-align: middle;
}
.user-info-table th {
  background-color: rgba(128,128,128,0.1);
  font-weight: bold;
}
.user-info-table tr:nth-child(even) {
  background-color: rgba(128,128,128,0.05);
}
.user-info-icon {
  width: 20px !important;
  height: 20px !important;
  vertical-align: middle;
  margin-right: 6px;
  transition: all 0.5s ease-in-out;
}
.map-container {
  text-align: center;
  margin: 20px 0;
}
.map-container iframe {
  width: 100%;
  max-width: 700px;
  height: 300px;
  border: none;
}

/* Animacija za bateriju */
@keyframes charging-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.battery-charging {
  animation: charging-pulse 1.5s infinite;
}