/*
 * 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;
}

.admin-index-thumbnail {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(34, 36, 38, 0.15);
  background: #f7f7f7;
}

.admin-index-thumbnail-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 54px;
  border-radius: 4px;
  border: 1px dashed rgba(34, 36, 38, 0.2);
  color: #999;
  font-size: 0.8rem;
  background: #fafafa;
}

.app-image-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  border: 1px dashed rgba(34, 36, 38, 0.2);
  color: #999;
  font-size: 0.8rem;
  text-align: center;
  background: #fafafa;
}

.app-image-placeholder--tiny {
  width: 50px;
  height: 50px;
}

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

.app-image-placeholder--medium {
  width: 150px;
  height: 150px;
}

.app-image-placeholder--cover {
  width: 100%;
  min-height: 160px;
  aspect-ratio: 16 / 9;
}

.business-profile-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-profile-logo-image {
  width: 100px !important;
  height: 100px !important;
  border: 4px solid white;
  object-fit: cover;
}

.admin-show-picture {
  width: 240px;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(34, 36, 38, 0.15);
  background: #f7f7f7;
}

.admin-show-summary {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.admin-show-summary__image {
  flex: 0 0 240px;
}

.admin-show-summary__details {
  flex: 1 1 auto;
}

.ui.pagination.menu {
  display: inline-flex;
  align-items: stretch;
  margin: 0.5rem 0 0;
}

.ui.pagination.menu a,
.ui.pagination.menu em,
.ui.pagination.menu span {
  display: flex;
  align-items: center;
  min-width: 2.75rem;
  padding: 0.75rem 1rem;
  border-left: 1px solid rgba(34, 36, 38, 0.1);
  color: rgba(0, 0, 0, 0.87);
  font-style: normal;
  justify-content: center;
}

.ui.pagination.menu a:first-child,
.ui.pagination.menu em:first-child,
.ui.pagination.menu span:first-child {
  border-left: 0;
}

.ui.pagination.menu a:hover {
  background: rgba(0, 0, 0, 0.03);
}

.ui.pagination.menu .current {
  background: #2185d0;
  color: #fff;
  font-weight: 700;
}

.ui.pagination.menu .disabled {
  color: rgba(40, 40, 40, 0.35);
  cursor: default;
}

@media (max-width: 767px) {
  .admin-show-summary {
    flex-direction: column;
  }

  .admin-show-summary__image {
    flex-basis: auto;
    width: 100%;
  }
}
  
  .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;
  }
