/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.purchase-card {
  position: sticky;
  top: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #f5f5f5;
}

.purchase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.price-tag {
  margin: 20px 0;
}

.price-container {
  background-color: rgba(0, 209, 178, 0.05);
  padding: 5px;
  border-radius: 8px;
}

.benefit-item {
  text-align: left;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.benefit-item .icon {
  margin-right: 10px;
}

.payment-icons .icon {
  margin: 0 3px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .purchase-card {
    position: relative;
    top: 0;
    margin-top: 30px;
  }
}

.code-font {
  font-family: monospace;
}

/* ActivityLog table styles */
.activity-log-timestamp {
  width: 180px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  white-space: nowrap;
}

.activity-log-message {
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

.activity-log-message pre {
  white-space: pre-wrap;
  margin: 0;
  background: none;
  border: none;
  padding: 0;
}

.activity-log-message .truncated {
  height: 150px;
  overflow-y: hidden;
}

.app-content img {
  border-radius:8px;
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
  overflow:hidden;
}
