ul.fotosprint-orders {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
  }
  
  .fotosprint-order-card {
    background-color: #f8f8f8;
    padding: 1rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 0.95rem;
    line-height: 1.5;
    border-left: none;
  }
  
  .fotosprint-order-card code {
    background-color: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 0px;
    font-family: monospace;
    font-size: 0.85rem;
    word-break: break-word;
    display: inline-block;
    max-width: 100%;
  }
  
  .fotosprint-order-card a:not(.btn-download) {
    display: inline-block;
    margin-top: 0.5rem;
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
  }
  
  .fotosprint-order-card a:not(.btn-download):hover {
    text-decoration: underline;
  }
  
  /* Bottone download visibile e coerente */
  .fotosprint-order-card .btn-download {
    display: inline-block;
    padding: 0.6rem 1rem;
    margin-top: 0.8rem;
    background-color: #800500;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
  }
  
  .fotosprint-order-card .btn-download:hover {
    background-color: #7a7a7a;
    color: #ffffff;
  }
  
  /* Ordini scaduti */
  .ordine-scaduto {
    background-color: #f1f1f1;
    color: #666;
    font-size: 0.9rem;
    opacity: 0.9;
  }
  
  .ordine-scaduto em {
    color: #999;
    font-style: italic;
    font-size: 0.85rem;
  }
  
  /* Responsive migliorato */
  @media (max-width: 600px) {
    ul.fotosprint-orders {
      flex-direction: column;
    }
  
    .fotosprint-order-card {
      max-width: 100%;
      font-size: 0.95rem;
    }
  
    .fotosprint-order-card code {
      font-size: 0.8rem;
    }
  
    .fotosprint-order-card .btn-download {
      width: 100%;
      text-align: center;
      font-size: 0.9rem;
      padding: 0.7rem 1rem;
    }
  }
 
  .btn-download i {
    margin-right: 0.4rem;
  }
  
  /* Bottone disabilitato */
.btn-download.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}