.orders-container {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: "Inter", system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  color: #e6e8ff;
}

.order-card {
  background: #1f2330;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: box-shadow .25s ease;
}
.order-card:hover {
  box-shadow: 0 25px 50px -10px rgba(0,0,0,0.6);
}

.order-header {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
  background: linear-gradient(135deg,#1f2330 0%,#252a42 100%);
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.order-header .left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.order-title {
  font-weight: 700;
  font-size: 1rem;
  color: orange;
}

.order-meta {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b0b8d6;
}

.meta-sep {
  display: inline-block;
  margin: 0 4px;
}

.order-header .right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.status-badge {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 0.5px;
}

.status-success {
  background: #1abc9c;
  color: #0f2a25;
}

.status-warning {
  background: #f1c40f;
  color: #2f2600;
}

.status-danger {
  background: #e74c3c;
  color: #2a0f0f;
}

.status-secondary {
  background: rgba(255,255,255,0.08);
  color: #c5cdd9;
}

.expand-icon {
  display: flex;
  align-items: center;
  margin-left: 6px;
  transition: transform .25s ease;
  color: #c5cdd9;
}

/* Rotate arrow when open */
.order-card[open] .expand-icon {
  transform: rotate(180deg);
}

.order-body {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.info-col {
  flex: 1 1 220px;
  min-width: 160px;
}

.info-col .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 4px;
}

.info-col .value {
  font-size: 0.95rem;
  font-weight: 500;
  word-break: break-word;
  color: #ffffff;
}

.notes-section {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.notes-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #adb5e0;
}

.notes-textarea {
  width: 100%;
  min-height: 100px;
  background: #1b1e33;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px;
  font-size: 0.9rem;
  color: #e6e8ff;
  resize: vertical;
}

.no-orders {
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
  color: #c5cdd9;
}

.services-section {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.section-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffd600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item {
  background: #252a42;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-main {
  flex: 1 1 250px;
  min-width: 220px;
}

.service-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #ffffff;
}

.service-desc {
  font-size: 0.85rem;
  color: #c0c8e0;
  margin-bottom: 6px;
  line-height: 1.2;
}

.service-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  color: #e6e8ff;
}

.service-qty,
.service-price {
  font-weight: 500;
}

.service-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #e6e8ff;
  margin-top: 4px;
}

.service-price,
.service-qty {
  display: flex;
  gap: 4px;
}
.service-price::before {
  content: '';
  /* možeš dodati ikonice ili razdvajanje ako želiš */
}
