
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #2c3e50, #4ca1af);
  color: white;
  text-align: center;
  padding: 20px;
  margin: 0;
}

.header {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 2rem;
}

.tab-buttons {
  display: flex;
  gap: 1rem;
}

.tab-buttons .tab {
  background: #ff6600;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.tab-buttons .arrow {
  font-size: 1.5rem;
  color: #fff;
  align-self: center;
}

.section {
  padding: 2rem;
}

.controls {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  text-align: left;
  justify-content: center;
}

.control-group {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
}

.control-group label {
  display: block;
  font-weight: bold;
}

.canvas-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.canvas-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

canvas {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.gallery-thumb.delivered {
  position: relative;
  opacity: 0.6;
}

.gallery-thumb.delivered::after {
  content: "DELIVERED";
  position: absolute;
  top: 5px;
  left: 5px;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
}

#feel-loading .spinner-border {
  width: 2.5rem;
  height: 2.5rem;
}


.stats-display {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: left;
}

.crop-toolbar {
  margin-top: 20px;
}

.crop-toolbar button {
  margin-right: 0.5rem;
  padding: 0.5rem 1rem;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.crop-overlay {
  position: absolute;
  border: 2px dashed #ff6600;
  border-radius: 0;
  cursor: move;
  width: 100px;
  height: 100px;
  top: 50px;
  left: 50px;
}
.hidden {
  display: none;
}
.canvas-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}


