/*/////////////////////PREMIUM/////////////////////*/

/* Styles pour les fonctionnalit s premium */

/* Badge premium sur les cartes */
.premium-badge {
  position: absolute;
  top: 15px;
  left: 20px;
  background: linear-gradient(135deg, #f39c12, #e74c3c);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: pulsePremium 2s infinite;
}

.premium-badge i {
  color: #ffeb3b;
}
.avatar-premium2{
  position: relative;
  left: -5px;
  top: -5px;
  width: 60px;
  border:2px solid white;
  border-radius: 10px;
}

/* Carte avec statut premium */
.airdrop-card.premium,
.twitter-card.premium {
  border: 2px solid #f39c12;
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

.airdrop-card.premium:hover,
.twitter-card.premium:hover {
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
}

/* Bouton premium et statut */
.premium-action {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.premium-button {
  background: linear-gradient(135deg, #f39c12, #e74c3c);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  margin:25px;
}

.premium-button i {
  color: #ffeb3b;
}

.premium-button:hover {
  background: linear-gradient(135deg, #e67e22, #d35400);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.premium-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}

/* Masquer le bouton premium sur les  l ments d j  premium */
.premium_active .premium-button {
  display: none;
}

.premium-status {
  font-size: 1rem;
  color: #f0b90b;
  text-align: center;
  background-color: #f0b90b24;
  padding:10px;
  border-radius:5px;
  border:1px solid #f0b90b82;
}

/* Popup premium structure */
.premium-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.premium-popup-content {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  animation: popIn 0.3s ease-out;
}

.premium-popup-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #757575;
  font-size: 24px;
  justify-content: center;
  font-weight: 600;
  flex-direction: column;
}

.premium-popup-title i {
  color: #f0b90b;
  font-size: 30px;
}

.premium-popup label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: 500;
}

.premium-popup-inputs {
  margin-bottom: 15px;
}

.premium-popup input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #4d4d4d;
  background-color: #efefef;
}

.premium-info {
  background-color: whitesmoke;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #666;
}

.premium-cost {
  font-weight: bold;
  font-size: 1.2rem;
  color: #f0b90b;
  display: block;
}

/* Boutons et actions dans le popup */
.premium-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.premium-actions.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.premium-actions.success {
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 8px;
  padding: 5px;
}

.premium-actions button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  flex: 1;
  transition: all 0.2s ease;
}

.premium-actions button:first-child {
  background-color: #f0b90b;
  color: white;
}

.premium-actions button:first-child:hover {
  background-color: #e67e22;
}

.premium-actions button:last-child {
  background-color: #ecf0f1;
  color: #7f8c8d;
}

.premium-actions button:last-child:hover {
  background-color: #dfe6e9;
}

.premium-total {
  display: flex;
  justify-content: space-between;
}

/* Bouton de fermeture apr s succ s */
#closePremiumPopupAfterSuccess {
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  color: white;
  background-color: #2ecc71;
  box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

#closePremiumPopupAfterSuccess:hover {
  background-color: #27ae60;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 12px rgba(46, 204, 113, 0.4);
}

#closePremiumPopupAfterSuccess.pulse {
  animation: button-pulse 1.5s infinite;
}

/* Message de statut dans le popup */
#premiumMessage {
  margin-top: 15px;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  text-align: center;
  display: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}

#premiumMessage.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Style du bouton disabled pendant le traitement */
#confirmPremiumBtn:disabled {
  opacity: 0.7;
  cursor: wait;
}

/* Animations */
@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulsePremium {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes pulseCardPremium {
  0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}
@keyframes pulsebtnPremium {
  0% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(230, 126, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0); }
}
@keyframes pulseCardcomplete {
  0% { box-shadow: 0 0 0 0 rgba(79, 169, 101, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(79, 169, 101, 0); }
  100% { box-shadow: 0 0 0 0 rgba(79, 169, 101, 0); }
}
@keyframes pulsetimer {
  0% { box-shadow: 0 0 0 0 rgba(240, 185, 11, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(240, 185, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 185, 11, 0); }
}

@keyframes button-pulse {
  0% { transform: scale(1); box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 4px 15px rgba(46, 204, 113, 0.5); }
  100% { transform: scale(1); box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3); }
}

/* Animation du popup   la fermeture */
.premium-popup.fade-out {
  opacity: 0;
}

/* Styles pour les  l ments en attente */
.premium-status.pending {
  font-size: 1rem;
  color: #f0b90b;
  text-align: center;
  background-color: #f0b90b24;
  padding:10px;
  border-radius:15px;
  border:1px solid #f0b90b82;
  animation: pulsetimer 2s infinite;
  display: flex;
  justify-content: space-around;
}

.pend-mess-stats{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.pend-mess {
  padding: 20px;
  background-color: #ffffff80;
  border-radius: 15px;
}
.queue-position {
  padding: 20px;
  background-color: #ffffff80;
  border-radius: 15px;
}
.premium-time {
  padding: 20px;
  background-color: #ffffff80;
  border-radius: 15px;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

.pending-badge {
  position: absolute;
  top: 15px;
  left: 20px;
  background:linear-gradient(135deg, #f39c12, #e74c3c);
  color: white;
  padding:5px 10px;
  border-radius:15px;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: flex;
  align-items: center;
  gap:5px;
  animation:pulsePremium 2s infinite;
}

.premium-pending {
  border: 2px dashed #f39c12;
}
/* Masquer le bouton premium pour les cartes en attente */
.premium-pending .premium-button,
.premium-action:has(.premium-status.pending) .premium-button {
  display: none !important;
}


/* ===== Styles pour la page d'accueil ===== */

/* Carte premium dans les classements */
.ranking-list .airdrop-item.premium,
.ranking-list .twitter-item.premium {
  border: 2px solid #f39c12;
  box-shadow: 0 3px 10px rgba(243, 156, 18, 0.25);
  background: linear-gradient(to right, rgba(253, 235, 208, 0.1), rgba(255, 255, 255, 0));
  position: relative;
  z-index: 1;
  transform: translateY(-2px);
  margin-bottom: 12px;
  animation: premiumGlow 3s infinite;
}

/* Badge premium pour les cartes de classement */
.ranking-list .premium-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #f39c12, #e74c3c);
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 3px;
}

.ranking-list .premium-badge i {
  color: #ffeb3b;
  font-size: 0.6rem;
}

/* Animation subtile pour les cartes premium */
@keyframes premiumGlow {
  0% { box-shadow: 0 3px 10px rgba(243, 156, 18, 0.25); }
  50% { box-shadow: 0 3px 15px rgba(243, 156, 18, 0.4); }
  100% { box-shadow: 0 3px 10px rgba(243, 156, 18, 0.25); }
}

/* Style pour les modales quand on affiche un  l ment premium */
.detail-modal .modal-container.premium {
  border: 2px solid #f39c12;
}

.detail-modal .modal-container.premium::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 5px;
  background: linear-gradient(90deg, #f39c12, #e74c3c);
  border-radius: 5px 5px 0 0;
}

.detail-modal .premium-status {
  display: inline-block;
  background: linear-gradient(135deg, #f39c12, #e74c3c);
  color: white;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  margin-top: 5px;
  margin-bottom: 10px;
}

.detail-modal .premium-status i {
  color: #ffeb3b;
  margin-right: 3px;
}

/* Adaptation du style pour les petits  crans */
@media (max-width: 768px) {
  .premium-popup-content {
    width: 95%;
    padding: 20px;
  }
  
  .premium-actions {
    flex-direction: column;
  }
}

/* ===== Styles pour les banni res premium ===== */

/* Conteneur principal des banni res premium */
.premium-banners-container {
    position: relative;
  display: flex;
  justify-content: space-between;
  border-radius: 5px;
  margin: 4% 5% 0% 5%;
  gap: 50px;
}


/* Section premium pour chaque type (airdrops, twitter) */
.premium-section {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  width: 100%;
  animation: pulseCardPremium 2s infinite;
  /* border supprimée - le box-shadow suffit */
}

/* En-t te de section premium */
.premium-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #bbb;
  background-color: #000000bd;
  padding: 20px;
  border-radius: 5px 5px 0px 0px;
  background-image: repeating-linear-gradient(45deg, rgba(127, 127, 127, 0) 0px, rgba(162, 162, 162, 0) 1px, #00000008 1px, #0000 5px);
}

.premium-section-header h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.premium-section-header i {
  color: #f0b90b;
}

/* Contr les de navigation */
.premium-section-controls {

  align-items: center;
  gap: 10px;
  display: none;
}

.premium-nav-btn {
  background-color: rgba(255, 255, 255, 0.05);
  border:none;
  border-radius:5px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:all 0.2s ease;
  color: white;
}

.premium-nav-btn:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.3);
}

.premium-nav-btn:disabled {
  cursor: not-allowed;
}

.premium-counter {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Conteneur du slider */
.premium-banner-slider {
  position: relative;
  min-height: 200px;
}

/* Banni re premium individuelle */
.premium-banner {
  padding: 0;
  position: relative;
  display: none;
  animation: fadeIn 0.5s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-banner.active {
  display: block;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/*  tat de chargement */
.premium-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: #777;
}

.premium-loading .spinner {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

/* Cacher les deux titres par d faut */
.title-all-rank,
.title-all-rank2 {
    display: none;
}

/* Afficher le titre airdrops en mode expanded airdrops */
body.expanded-airdrops-mode .title-all-rank {
    display: block;
}

/* Afficher le titre influenceur en mode expanded twitter */
body.expanded-twitter-mode .title-all-rank2 {
    display: block;
}


/* Structure de contenu de la banni re avec effet de slide */
.premium-banner-content {
  display: flex;
  height: 214px;
  background-color: #f8f9fa;
  overflow:hidden;
  position: relative;
  transition:all 0.5s ease;
  margin-bottom: -3px;
}

.premium-banner-image {
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.premium-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease;
}

.premium-banner-info {
  width: 50%;
  padding: 30px 18px 0 18px; /* top space pour le badge absolu en haut */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  transition: all 0.5s ease;
  background-color: #f8f9fa;
  z-index: 2;
  overflow: hidden;
}

/* Effet de survol - l'image s' tend beaucoup et le texte est fortement compress  */
.premium-banner:hover .premium-banner-image {
  width: 100%;  /* L'image prend 85% de la largeur totale */
}

.premium-banner:hover .premium-banner-info {
  width: 0%;      /* Passe de 15%   0% */
  padding: 0;     /* Supprime tout le padding */
  overflow: hidden; /* Cache tout contenu qui d borde */
  opacity: 0;     /* Rend le texte invisible */
}

.premium-banner-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
}

.premium-banner-title .avatar-premium2 {
  position: static;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 2px solid white;
  object-fit: cover;
  flex-shrink: 0;
}

.premium-banner-description {
  font-size: 0.75rem;
  color: #666;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.premium-banner-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 0 0 0;
  background: transparent;
}

/* Border-top uniquement pour les badges twitter (pas item-metrics-bar qui a la sienne) */
.premium-banner-footer .theme-badges-display-premium {
  border-top: 1px solid #eee;
  padding-top: 8px;
  width: 100%;
}



.premium-banner-metrics {
  display: flex;
  gap: 15px;
}

.premium-banner-metric {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #777;
}

.premium-banner-metric i {
  color: #f39c12;
}

.premium-banner-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  background:linear-gradient(135deg, #f39c12, #e74c3c);
  color: white;
  padding:5px 10px;
  border-radius:0px 0px 0px 5px;
  font-size: 0.8rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap:5px;
  z-index: 10;
  font-weight: bold;
}

.time-prem {
  font-weight: 600;
  font-size: 12px;
  color: #ffffff8a;
  border-left:1px solid #ffffff57;
  padding-left: 10px;
  margin-left: 5px;
}

.premium-banner-badge i {
  color: #ffeb3b;
}

/* Bouton Voir (  conserver au cas o  vous souhaiteriez le r utiliser) */
.premium-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #f39c12;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.premium-view-btn:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
}



/* ===== PS-STATUS (statut premium) ===== */

/* ================================
   PREMIUM STATUS - STYLES SIMPLES
   ps = premium status (pr fixe)
   ================================ */

/* Base commune pour tous les statuts */
.ps-status {
    border-radius: 12px;
    padding: 14px 16px;
    margin: 10px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* ================================
   STATUT PREMIUM ACTIF
   ================================ */
.ps-status.ps-active {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px solid #ffc107;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Barre anim e en haut */
.ps-status.ps-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, #ffc107, #ff9800);
    background-size: 200% 100%;
    animation: ps-shimmer 3s linear infinite;
}

/* Ic ne couronne */
.ps-status.ps-active .ps-icon-wrapper {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 3px 8px rgba(255, 152, 0, 0.3);
}

/* Contenu texte */
.ps-status.ps-active .ps-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ps-status.ps-active .ps-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e65100;
}

.ps-status.ps-active .ps-date {
    font-size: 14px;
    font-weight: 700;
    color: #bf360c;
}

/* ================================
   STATUT EN ATTENTE
   ================================ */
.ps-status.ps-pending {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* Barre bleue en haut */
.ps-status.ps-pending::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #1976d2;
}

/* Header avec ic ne */
.ps-status.ps-pending .ps-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(33, 150, 243, 0.2);
    font-size: 13px;
    font-weight: 600;
    color: #0d47a1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ps-status.ps-pending .ps-header i {
    color: #1565c0;
    animation: ps-pulse 2s ease-in-out infinite;
}

/* Grille d'informations */
.ps-status.ps-pending .ps-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}

.ps-status.ps-pending .ps-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.ps-status.ps-pending .ps-info-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #1565c0;
    opacity: 0.8;
}

.ps-status.ps-pending .ps-info-value {
    font-size: 13px;
    font-weight: 700;
    color: #0d47a1;
}

/* Position sp ciale */
.ps-status.ps-pending .ps-info-item:first-child .ps-info-value {
    font-size: 16px;
    color: #1976d2;
}

.ps-status {
        padding: 12px;
        font-size: 12px;
    }

.ps-status.ps-active .ps-icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

.ps-status.ps-pending .ps-info-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

.ps-status.ps-pending .ps-info-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

/* ================================
   STATUT PREMIUM ACTIF
   ================================ */
.ps-status.ps-active {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px solid #ffc107;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Barre anim e en haut */
.ps-status.ps-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, #ffc107, #ff9800);
    background-size: 200% 100%;
    animation: ps-shimmer 3s linear infinite;
}

/* Ic ne couronne */
.ps-status.ps-active .ps-icon-wrapper {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 3px 8px rgba(255, 152, 0, 0.3);
}

/* Contenu texte */
.ps-status.ps-active .ps-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ps-status.ps-active .ps-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e65100;
}

.ps-status.ps-active .ps-date {
    font-size: 14px;
    font-weight: 700;
    color: #bf360c;
}

.ps-status.ps-active .ps-icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

/* ================================
   STATUT EN ATTENTE
   ================================ */
.ps-status.ps-pending {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* Barre bleue en haut */
.ps-status.ps-pending::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #1976d2;
}

/* Header avec ic ne */
.ps-status.ps-pending .ps-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(33, 150, 243, 0.2);
    font-size: 13px;
    font-weight: 600;
    color: #0d47a1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ps-status.ps-pending .ps-header i {
    color: #1565c0;
    animation: ps-pulse 2s ease-in-out infinite;
}

/* Grille d'informations */
.ps-status.ps-pending .ps-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}

.ps-status.ps-pending .ps-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.ps-status.ps-pending .ps-info-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #1565c0;
    opacity: 0.8;
}

.ps-status.ps-pending .ps-info-value {
    font-size: 13px;
    font-weight: 700;
    color: #0d47a1;
}

/* Position sp ciale */
.ps-status.ps-pending .ps-info-item:first-child .ps-info-value {
    font-size: 16px;
    color: #1976d2;
}

.ps-status.ps-pending .ps-info-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

.ps-status.ps-pending .ps-info-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

/* Ic ne couronne */
.ps-status.ps-active .ps-icon-wrapper {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 3px 8px rgba(255, 152, 0, 0.3);
}

.ps-status.ps-active .ps-icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

/* Contenu texte */
.ps-status.ps-active .ps-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ps-status.ps-active .ps-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e65100;
}

.ps-status.ps-active .ps-date {
    font-size: 14px;
    font-weight: 700;
    color: #bf360c;
}

/* Header avec ic ne */
.ps-status.ps-pending .ps-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(33, 150, 243, 0.2);
    font-size: 13px;
    font-weight: 600;
    color: #0d47a1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ps-status.ps-pending .ps-header i {
    color: #1565c0;
    animation: ps-pulse 2s ease-in-out infinite;
}

/* Grille d'informations */
.ps-status.ps-pending .ps-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}

.ps-status.ps-pending .ps-info-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

.ps-status.ps-pending .ps-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

/* Position sp ciale */
.ps-status.ps-pending .ps-info-item:first-child .ps-info-value {
    font-size: 16px;
    color: #1976d2;
}

.ps-status.ps-pending .ps-info-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

.ps-status.ps-pending .ps-info-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #1565c0;
    opacity: 0.8;
}

.ps-status.ps-pending .ps-info-value {
    font-size: 13px;
    font-weight: 700;
    color: #0d47a1;
}

/* Position sp ciale */
.ps-status.ps-pending .ps-info-item:first-child .ps-info-value {
    font-size: 16px;
    color: #1976d2;
}

@media (max-width: 480px) {
    .ps-status {
        padding: 12px;
        font-size: 12px;
    }
    
    .ps-status.ps-active .ps-icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .ps-status.ps-pending .ps-info-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .ps-status.ps-pending .ps-info-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}