/**
 * Resync.us Public Styles
 */

.resync-us-sync-status {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  color: #191e23;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccd0d4;
  z-index: 9999;
  max-width: 300px;
}

.resync-us-sync-status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.resync-us-sync-status-title {
  margin: 0;
  font-size: 1rem;
  color: #007BFF;
}

.resync-us-sync-status-close {
  background: none;
  border: none;
  color: #e9ecef;
  cursor: pointer;
  font-size: 1.2rem;
}

.resync-us-sync-status-close:hover {
  color: #6f42c1;
}

.resync-us-sync-progress {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.resync-us-sync-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #007BFF, #28a745);
  width: 0%;
  transition: width 0.3s ease;
}

.resync-us-sync-status.connected .resync-us-sync-status-title {
  color: #28a745;
}

.resync-us-sync-status.syncing .resync-us-sync-status-title {
  color: #6f42c1;
}