/* =======================
   Thème personnalisé Erugo
   Palette : Bleu #135273 / Corail #e8584f
   ======================= */

/* Variables globales */


.main {
    margin: 0 auto !important;
}
.logo-container {
    background: #fff !important;
    min-height: 82px !important;
}

button.text-large {
  font-size: 0.8rem;
}
/* Liens */
.expiry-settings-container .expiry-label:hover {
      color: var(--brand);
    text-decoration: none;
    transition: color .2s ease
}
a {
    color: var(--brand);
    text-decoration: none;
    transition: color .2s ease;
}
a:hover {
    color: var(--accent);
}


/* Champs de formulaire */
input, select, textarea {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: .6rem .8rem;
    width: 100%;
    transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(19, 82, 115, 0.2);
}

/* Cartes / blocs */
.card, .panel, .upload-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
}

/* Zone d'upload */
.drop-zone, .uploader {
    border: 2px dashed rgba(19, 82, 115, 0.4);
    background: rgba(19, 82, 115, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: background .2s ease, border-color .2s ease;
}
.drop-zone:hover, .uploader:hover {
    background: rgba(19, 82, 115, 0.1);
    border-color: var(--accent);
}

/* Barre de progression */
.progress {
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}
.progress-bar {
    background: var(--accent);
    height: 8px;
    transition: width .3s ease;
}

/* Modales */
.modal {
    background: rgba(0, 0, 0, 0.6);
}
.modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
}

/* Animations douces */
.fade-in {
    animation: fadeIn .3s ease forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

  #app {
    padding: 0;
  }
  footer {
    padding: 20px;
  }
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  background: #fff;
}

@media (min-width: 900px) {
  .main {
    margin-bottom: 0;
    padding: 20px;
  }
}