/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 *= require_tree .
 *= require_self
 */

.standard-profile-list-image {
	height: 48px;
	width: 48px;
}

.standard-profile-image {
	height: 88px;
	width: 88px;
}

.location-cover-image {
	object-fit: cover;
  aspect-ratio: 16/9;
}

.location-logo {
	height: 150px;
	width: 150px !important;
	margin: auto;
}

.location-logo-show {
	height: 100px;
	width: 100px !important;
	margin: auto;
}

.business-profile-list-logo {
	height: 56px;
	width: 56px !important;
	margin: auto;
}

.logo-card {
	height: 88px;
	width: 88px;
}

/* General Icon Styles */
.icon {
  font-size: 16px;
  margin-right: 5px;
}

/* Status-specific Icon Styles */
.pending_approval_icon {
  color: lightgray;
}

.approved_icon {
  color: green;
}

.to_review_icon {
  color: yellow;
}

.paused_icon {
  color: blue;
}

.disabled_icon {
  color: gray;
}

.blocked_icon {
  color: red;
}

.restricted_offer_icon {
  color: purple;
}

.private_offer_icon {
  color: black;
}

.public_offer_icon {
  color: green;
}

.deal_icon {
  color: teal;
}

.free_icon {
  color: magenta;
}

.paid_icon {
  color: gold;
}

.live_icon {
  color: green;
}

.expired_icon {
  color: darkred;
}

.admin_icon {
  color: red;
}

.new_user_icon {
  color: lightgray;
}

.standard_icon {
  color: blue;
}

.business_icon {
  color: black;
}

.concierge_icon {
  color: darkorchid;
}

.error_icon {
  color: darkred;
}




  .offers-container {
    padding: 1rem 0;
  }
  
  .offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .table-responsive {
    overflow-x: auto;
  }
  
  .business-profile-list-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .offer-description {
    color: #666;
    margin-top: 0.25rem;
    font-size: 0.9rem;
  }
  
  .provider-info {
    display: flex;
    flex-direction: column;
  }
  
  .business-name {
    color: #666;
    font-size: 0.9rem;
  }
  
  .status-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
  
  .status-text {
    font-size: 0.9rem;
  }
  
  .creation-info {
    display: flex;
    flex-direction: column;
  }
  
  .creator {
    color: #666;
    font-size: 0.9rem;
  }
  
  .action-buttons {
    display: flex;
    gap: 0.5rem;
  }
  
  .text-center {
    text-align: center;
  }