.prop-firm-offer {
    border: 1px solid #312146;
    border-radius: 0.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 16px;
}
.prop-firm-image{
	border: 1px solid #55546e80;
    border-radius: 0.5rem;
    padding: 0.5rem;
    height: 60px;
    width: 60px;
    flex-shrink: 0;
}
.prop-firm-offer-firm{
	gap:1rem;
}
.prop-firm-offer-actions {
	display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}
.prop-firm-offer-actions .buy-btn{
	background-image: linear-gradient(315deg, rgba(144, 97, 249, 0.1), rgba(231, 70, 148, 0.1));
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid hsl(326.94deg 78.4% 49.02%);
    font-weight: bold;
}
.prop-firm-offer-desc {
    width: 20%;
}
.prop-firm-offer-firm{
	flex-grow:1;
}
#prop-firm-offers-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.prop-firm-offer-discount-text span {
	display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #35244a;
    border-radius: 0.75rem;
    padding: 0 0.5rem;
    position: relative;
    padding-right: 2rem;
    text-align: center;
}
.prop-firm-offer-discount {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 24px;
}
.gap-1{
	gap: 0.5rem;
}
.gap-2{
	gap: 1rem;
}
.gap-3{
	gap: 1.5rem;
}
.prop-firm-offer-discount span:first-child {
    color: #df1b87;
}
.prop-firm-offer-discount span:last-child {
    font-weight: bold;
}
.prop-firm-offer-desc {
    padding: 1rem;
}
.prop-firm-offer-desc > div {
    border: 1px solid #df37af;
    border-radius: 0.5rem;
    padding: 0.5rem;
}
.prop-firm-offer-desc {
    border-right: 1px solid #312146;
}
.prop-firm-offer-actions-code > span:first-child {
    font-size: 12px;
    border-right: 1px solid #cf1a7f;
    padding-right: 0.5rem;
}
.prop-firm-offer-actions-code {
	border: 1px solid #cf1a7f;
    border-radius: 1rem;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    font-size: 16px;
}
.prop-firm-offer-actions-code:hover {
    background: #35244a;
}
.prop-firm-offer-actions-code.copied {
    background: #8f27b8;
}
.prop-firm-offer-actions-code.copied .copy-i{
	display: none;
}
.prop-firm-offer-actions-code:not(.copied) .check-i{
	display: none;
}

/* Skeleton base */
.offers-placeholder {
  background: linear-gradient(to right, #1c1430 10%, #2c1e40 18%, #322247 33%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: 8px;
}

/* Shimmer animation */
@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}

/* Layout styles */
.offers-placeholder-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  border:1px solid #312146
}

.offers-placeholder-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.offers-placeholder-box {
  height: 24px;
  width: 200px;
}

.offers-placeholder-small {
  height: 16px;
  width: 200px;
}

.offers-placeholder-logo {
  height: 60px;
  width: 60px;
  border-radius: 8px;
}

.offers-placeholder-button {
  height: 36px;
  width: 60px;
  border-radius: 18px;
}