/* Campaign Card Layout Fix
   - Changes provider names to "Direct" and "Meta"
   - Condenses campaign info into a single row */

/* Make campaign info display in a single row */
.campaign-info {
  display: flex !important;
  flex-wrap: wrap;
  gap: 16px !important;
  align-items: center;
}

.info-row {
  margin-right: 8px;
  flex-shrink: 0;
}

/* Give more space to the campaign stats */
.campaign-card-body {
  align-items: center;
}

/* Reduce the label min-width to save horizontal space */
.info-label {
  min-width: auto !important;
  margin-right: 6px;
}

/* Mobile layout adjustments */
@media (max-width: 768px) {
  .campaign-info {
    flex-wrap: wrap;
    gap: 8px !important;
  }
  
  .info-row {
    margin-bottom: 6px;
  }
}