/* Base resets, typography, and layout extracted from styles.css */
/* ... (CSS will be pasted here, no code changes) ... */

.upload-notification {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1976d2;
  color: white;
  z-index: 2000;
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.upload-notification-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.upload-notification-actions button {
  background-color: white;
  color: #1976d2;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  margin: 0 0.5rem;
}

.fab {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #2196f3;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: white;
  display: flex; /* Visible by default */
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1500;
  transition: transform 0.2s;
}

.dev-options-section.fab-visible .fab {
  display: flex;
}

.fab:hover {
  transform: scale(1.05);
}

.fab svg {
  width: 28px;
  height: 28px;
}

.temp-delivery-data-section {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 350px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  padding: 1rem;
  display: none; /* Hidden by default */
}
