/* ============================================================
   JADLOG — estilo.css
   Estilos da página principal + página de consulta/tracking
   ============================================================ */

:root {
  --jadlog-primary: #C8002E;
  --jadlog-primary-dark: #a50026;
  --jadlog-secondary: #28a745;
  --jadlog-light: #f8f9fa;
  --jadlog-dark: #1a1a1a;
  --jadlog-gray: #6c757d;
  --jadlog-success: #28a745;
  --jadlog-warning: #ffc107;
  --jadlog-radius: 4px;
  --jadlog-shadow: 0 2px 8px rgba(0,0,0,0.08);
  --jadlog-shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --jadlog-font: 'Montserrat', 'Open Sans', sans-serif;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Reset e base ───────────────────────────────────────────── */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--jadlog-font);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--jadlog-dark);
    background-color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: pageFadeIn 0.5s ease both;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================================
   HEADER — menu-principal + pesquisa
   (classes compartilhadas com consulta/index.html)
   ============================================================ */
header {
    background-color: #ffffff;
    border-bottom: 3px solid var(--jadlog-primary);
    box-shadow: var(--jadlog-shadow);
    position: relative;
    z-index: 100;
}

.menu-principal{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1rem;
}

.menu-principal img{
    height: 56px;
    object-fit: contain;
}

.menu-icone img{
    height: 28px;
    border: 1.5px solid #d0d0d0;
    border-radius: 4px;
    padding: 4px;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.menu-icone img:hover {
    border-color: var(--jadlog-primary);
    background-color: rgba(227,6,19,0.05);
}

.pesquisa{
    padding: 0 1rem 0.5rem;
}

.pesquisa select {
    display: block;
    margin-bottom: 6px;
    border: 1.5px solid #e0e0e0;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    outline: none;
    cursor: pointer;
    transition: border-color 0.25s ease;
}

.pesquisa select:focus,
.pesquisa select:hover {
    border-color: var(--jadlog-primary);
}

.barra-pesquisa{
    display: flex;
    border: 1.5px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.barra-pesquisa:focus-within {
    border-color: var(--jadlog-primary);
}

.barra-pesquisa input{
    height: 36px;
    width: 100%;
    padding: 5px 12px;
    font-size: 14px;
    line-height: 1.5;
    border: none;
    outline: none;
    font-family: var(--jadlog-font);
    color: #333;
    background: transparent;
}

.barra-pesquisa input::placeholder {
    color: #aaa;
}

.barra-pesquisa img{
    height: 36px;
    width: 36px;
    border-radius: 0;
    background: var(--jadlog-primary);
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.25s ease;
    flex-shrink: 0;
}

.barra-pesquisa img:hover {
    background: var(--jadlog-primary-dark);
}

/* ============================================================
   MENSAGEM DE STATUS (rastreio)
   ============================================================ */
#message {
    font-family: var(--jadlog-font);
    font-size: 15px;
    border-radius: var(--jadlog-radius);
    padding: 10px 16px;
    transition: all 0.25s ease;
}

#message.error {
    color: #c0392b;
    background-color: #fdecea;
}

#message.success {
    color: #1a7a3f;
    background-color: #eaf7ef;
}

/* ============================================================
   SEÇÃO RASTREIO
   ============================================================ */
.rastreio{
    padding: 1.2rem 1rem;
    background: linear-gradient(135deg, var(--jadlog-primary) 0%, var(--jadlog-primary-dark) 100%);
    border-radius: 0;
    text-align: center;
}

.rastreio span{
    color: #fff;
    font-size: 11pt;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.rastreio input{
    height: 40px;
    width: 100%;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 4px 0 0 4px;
    border: none;
    outline: none;
    font-family: var(--jadlog-font);
    color: #333;
}

.rastreio input::placeholder {
    color: #aaa;
}

.padding-padrao{
    padding: 0;
}

.formulario-consulta{
    display: flex;
    margin-top: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.formulario-consulta button{
    min-width: 100px;
    color: #555;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 6px 16px;
    white-space: nowrap;
}

.formulario-consulta button:hover {
    background-color: #e8e8e8;
}

/* ============================================================
   BANNER / CARROSSEL
   ============================================================ */
.banner-container {
    width: calc(100% - 24px);
    max-width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--jadlog-radius);
    margin: 16px auto;
    box-shadow: var(--jadlog-shadow);
    height: 180px;
}

.banner-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

.banner-slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    height: 100%;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.banner-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.banner-indicators button,
.banner-indicators span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.banner-indicators .ativo,
.banner-indicators button.ativo {
    background-color: #fff;
}

/* ============================================================
   SEÇÃO SOBRE
   ============================================================ */
.sobre{
    padding: 3rem 1.5rem;
    background-color: #fff;
}

.sobre-imagem {
    text-align: center;
    margin-bottom: 1.5rem;
}

.sobre-imagem img {
    height: auto;
    max-height: 350px;
    border-radius: 4px;
    box-shadow: var(--jadlog-shadow);
    width: 100%;
    object-fit: cover;
}

.sobre img{
    height: auto;
    max-height: 350px;
}

.sobre h1,
.sobre-texto h1 {
    margin: 0.67em 0;
    letter-spacing: -1px;
    font-size: 1.6em;
    line-height: 1.3;
    text-align: center;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--jadlog-dark);
}

.sobre-lista {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.sobre-lista li {
    position: relative;
    padding-left: 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 450;
    letter-spacing: -0.3px;
}

.sobre-lista li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--jadlog-primary);
}

.sobre-nos p{
    font-weight: 450;
    text-align: justify;
    font-size: 14px;
    letter-spacing: -0.3px;
    padding: 3px 0;
    color: #555;
}

.sobre-nos{
    margin-bottom: 3vh;
}

.sobre-nos button{
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border: none;
    width: 100%;
    background-color: var(--jadlog-primary);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.sobre-nos button:hover {
    background-color: var(--jadlog-primary-dark);
    transform: translateY(-1px);
}

/* ============================================================
   SEÇÃO NOTÍCIAS
   ============================================================ */
.noticias{
    padding: 2.5rem 2rem;
    background-color: #f7f7f7;
    margin-bottom: 0;
}

.noticias img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--jadlog-radius);
    box-shadow: var(--jadlog-shadow);
    margin-top: 16px;
}

.noticias h1{
    font-size: 1.3em;
    letter-spacing: -1px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--jadlog-dark);
}

.noticias p{
    font-size: 14px;
    text-align: center;
    color: #666;
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto 8px;
}

/* ============================================================
   SEÇÃO PARCEIROS
   ============================================================ */
.parceiros{
    padding: 2.5rem 2rem;
    background-color: #fff;
}

.parceiros h1{
    font-size: 1.3em;
    letter-spacing: -1px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--jadlog-dark);
}

.parceiros img{
    width: 100%;
    height: auto;
    border-radius: var(--jadlog-radius);
}

/* ============================================================
   RODAPÉ
   (classes compartilhadas com consulta/index.html)
   ============================================================ */
footer{
    background-color: var(--jadlog-dark);
}

.rodape{
    padding: 2rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
}

.rodape img{
    width: 100px;
    height: auto;
    object-fit: contain;
    margin-bottom: 16px;
    opacity: 0.85;
}

.rodape-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-bottom: 16px;
}

.rodape a{
    text-decoration: none;
    color: #ccc;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.25s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rodape a:hover {
    color: #ffffff;
}

.rodape hr{
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
}

.rodape-fim{
    text-align: center;
    font-size: 12px;
    padding: 12px 2rem 16px;
    color: rgba(255,255,255,0.4);
}

.rodape-fim img{
    height: 50px;
}

/* ============================================================
   RESPONSIVIDADE — TABLET (>= 768px)
   ============================================================ */
@media (min-width: 768px) {
    .menu-principal {
        padding: 0.8rem 2rem;
    }

    .menu-principal img {
        height: 60px;
    }

    .pesquisa {
        padding: 0 2rem 0.8rem;
    }

    .rastreio {
        padding: 1.5rem 2rem;
    }

    .rastreio span {
        font-size: 13pt;
    }

    .formulario-consulta {
        max-width: 560px;
    }

    .banner-container {
        height: 300px;
        max-width: 800px;
        margin: 32px auto;
        border-radius: 4px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }

    .sobre {
        display: flex;
        flex-direction: row;
        gap: 40px;
        align-items: center;
        padding: 4rem 3rem;
    }

    .sobre-imagem {
        flex: 0 0 45%;
        margin-bottom: 0;
    }

    .sobre-imagem img {
        max-height: 400px;
    }

    .sobre-texto {
        flex: 1;
    }

    .sobre h1,
    .sobre-texto h1 {
        text-align: left;
        font-size: 1.8em;
    }

    .sobre-nos button {
        width: auto;
        padding: 12px 36px;
    }

    .noticias {
        padding: 3rem;
    }

    .noticias img {
        max-height: 200px;
    }

    .parceiros {
        padding: 3rem;
    }

    .rodape {
        padding: 2.5rem 3rem 1.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        align-items: flex-start;
    }

    .rodape-links {
        flex: 1;
        grid-template-columns: 1fr 1fr;
    }

    .rodape-fim {
        padding: 16px 3rem;
    }
}

/* ============================================================
   RESPONSIVIDADE — DESKTOP (>= 1024px)
   ============================================================ */
@media (min-width: 1024px) {
    .banner-container {
        height: 400px;
        max-width: 900px;
    }

    .sobre {
        max-width: 1100px;
        margin: 0 auto;
        padding: 5rem 2rem;
    }

    .noticias,
    .parceiros {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .rodape {
        max-width: 1100px;
        margin: 0 auto;
    }

    .rodape-fim {
        max-width: 1100px;
        margin: 0 auto;
    }
}

/* ============================================================
   RESPONSIVIDADE MOBILE (<= 480px)
   ============================================================ */
@media (max-width: 480px) {
    .formulario-consulta {
        flex-direction: column;
        border-radius: 4px;
    }

    .rastreio input {
        border-radius: 4px 4px 0 0;
        border-bottom: 1px solid #eee;
    }

    .formulario-consulta button {
        border-radius: 0 0 4px 4px;
        padding: 14px;
        width: 100%;
    }
}

/* ============================================================
   ESTILOS DA PAGINA DE CONSULTA / TRACKING
   (usados por consulta/index.html)
   ============================================================ */

.tributo-alerta {
  background: linear-gradient(135deg, #fff3cd, #ffe8a1);
  border: 1.5px solid #f0b90b;
  border-radius: var(--jadlog-radius);
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #7a5800;
}
.tributo-alerta .alerta-icon { font-size: 22px; flex-shrink: 0; }
.tributo-alerta strong { display: block; font-size: 14px; color: #5a3e00; }

.protocolo-box {
  background: var(--jadlog-light);
  border: 1px solid #dee2e6;
  border-radius: var(--jadlog-radius);
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--jadlog-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.protocolo-box span { font-weight: 700; color: var(--jadlog-dark); font-size: 13px; letter-spacing: 1px; }

.prazo-urgencia {
  background: #fff0f0;
  border: 2px solid var(--jadlog-primary);
  border-radius: var(--jadlog-radius);
  padding: 10px 16px;
  margin-bottom: 14px;
  text-align: center;
  font-size: 13px;
  color: #C8002E;
  font-weight: 600;
}
.prazo-urgencia #countdown { font-size: 20px; font-weight: 800; letter-spacing: 2px; }

.dado-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}
.dado-row:last-of-type { border-bottom: none; }
.dado-label {
  min-width: 90px;
  color: #888;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  padding-top: 1px;
}
.dado-valor {
  color: #222;
  font-weight: 600;
  word-break: break-word;
}
.dado-valor.destaque {
  color: var(--jadlog-primary);
  font-size: 14px;
}

.produto-card {
  background: #f0fff4;
  border: 1px solid #b2dfdb;
  border-radius: var(--jadlog-radius);
  padding: 10px 14px;
  margin-bottom: 12px;
  font-size: 13px;
}
.produto-card .prod-label { color: #555; font-size: 11px; text-transform: uppercase; font-weight: 700; margin-bottom: 3px; }
.produto-card .prod-nome  { font-weight: 700; color: #1b5e20; font-size: 14px; }
.produto-card .prod-metodo { color: #555; font-size: 12px; margin-top: 4px; }

.taxa-card {
  background: linear-gradient(135deg, #fff5f5, #ffe0e0);
  border: 2px solid var(--jadlog-primary);
  border-radius: var(--jadlog-radius);
  padding: 14px 16px;
  margin: 14px 0;
  text-align: center;
}
.taxa-card .taxa-label { font-size: 11px; text-transform: uppercase; color: #c00; font-weight: 700; letter-spacing: 1px; }
.taxa-card .taxa-montante { font-size: 28px; font-weight: 900; color: var(--jadlog-primary); margin: 4px 0; }
.taxa-card .taxa-sub { font-size: 11px; color: #999; margin-top: 4px; }

.lead-info-badge {
  background: linear-gradient(135deg, #fef9e7, #fdf3d3);
  border: 1.5px solid #f0d060;
  border-radius: var(--jadlog-radius);
  padding: 12px 14px;
  font-size: 12px;
  color: #5d4037;
  margin-bottom: 14px;
}
.lead-info-badge .lnome  { font-size: 15px; font-weight: 800; color: var(--jadlog-dark); }
.lead-info-badge .lcpf   { font-size: 12px; color: #666; margin-top: 2px; }
.lead-info-badge .lprod  { font-size: 12px; color: #2e7d32; font-weight: 700; margin-top: 4px; }

.tracking-countdown {
  background: linear-gradient(135deg, var(--jadlog-primary), var(--jadlog-primary-dark));
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  border-radius: var(--jadlog-radius);
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 12px rgba(227,6,19,0.3);
}
.tracking-countdown #trackCount { font-size: 24px; font-weight: 900; letter-spacing: 3px; font-variant-numeric: tabular-nums; }

.jadlog-tracking-container {
  font-family: var(--jadlog-font);
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border-radius: var(--jadlog-radius);
  background-color: #fff;
}

.jadlog-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 12pt;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--jadlog-primary);
}

.jadlog-logo {
  height: 40px;
  margin-right: 15px;
}

.jadlog-header h2 {
  color: var(--jadlog-primary);
  margin: 0;
  font-size: 14pt;
  text-align: center;
  font-weight: 800;
  width: 100%;
}

.jadlog-tracking-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 14px;
  background-color: var(--jadlog-light);
  border-radius: var(--jadlog-radius);
  border: 1px solid #e8e8e8;
}

.jadlog-tracking-number .label {
  font-weight: 600;
  font-size: 9pt;
  color: var(--jadlog-gray);
  margin-right: 10px;
}

.jadlog-tracking-number .value {
  font-weight: 700;
  font-size: 1.1em;
  color: var(--jadlog-dark);
}

.jadlog-package-status {
  text-align: right;
}

.status-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 5px;
}

.status-badge.delivered {
  background-color: var(--jadlog-success);
  color: white;
}

.status-badge.awaiting-payment {
  background-color: var(--jadlog-primary);
  color: white;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(227, 6, 19, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(227, 6, 19, 0);
  }
}

.estimated-date {
  font-size: 0.9em;
  color: var(--jadlog-gray);
  margin: 0;
}

/* ── Pay button (tracking page) ──────────────────────────── */
.pay-taxa-btn {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--jadlog-primary), var(--jadlog-primary-dark));
  color: #fff;
  border: none;
  padding: 16px 24px;
  cursor: pointer;
  border-radius: var(--jadlog-radius);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(227,6,19,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--jadlog-font);
}
.pay-taxa-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(227,6,19,0.45);
}
.pay-taxa-btn:active {
  transform: translateY(0);
}

/* ── Timeline ────────────────────────────────────────────── */
.jadlog-tracking-timeline {
  position: relative;
  margin: 24px 0;
}

.jadlog-tracking-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  height: 100%;
  width: 4px;
  background: linear-gradient(to top, var(--jadlog-secondary) 80%, var(--jadlog-primary) 80%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 48px;
  margin-bottom: 28px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 14px;
  color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.timeline-item.completed .timeline-icon {
  background-color: var(--jadlog-secondary);
  border: 2px solid var(--jadlog-secondary);
}

.timeline-item.current .timeline-icon {
  background-color: var(--jadlog-primary);
  border: 2px solid var(--jadlog-primary);
  animation: iconPulse 1.5s infinite;
}

@keyframes iconPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(227, 6, 19, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(227, 6, 19, 0);
  }
}

.timeline-content {
  padding: 0 0 0 10px;
}

.timeline-content h4 {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 14px;
}

.timeline-item.completed .timeline-content h4 {
  color: var(--jadlog-secondary);
}

.timeline-item.current .timeline-content h4 {
  color: var(--jadlog-primary);
  font-size: 15px;
}

.timeline-content p {
  margin: 0 0 4px;
  color: #555;
  font-size: 13px;
}

.timeline-date {
  font-size: 12px;
  color: var(--jadlog-gray);
  font-weight: 500;
}

.jadlog-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
}

.jadlog-btn {
  padding: 12px 20px;
  border: 1px solid var(--jadlog-gray);
  border-radius: var(--jadlog-radius);
  background-color: white;
  color: var(--jadlog-gray);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
  font-size: 14px;
}

.jadlog-btn:hover {
  background-color: #f5f5f5;
}

.jadlog-btn-primary {
  background-color: var(--jadlog-primary);
  border-color: var(--jadlog-primary);
  color: white;
}

.jadlog-btn-primary:hover {
  background-color: var(--jadlog-primary-dark);
  border-color: var(--jadlog-primary-dark);
}

@media (max-width: 768px) {
  .jadlog-tracking-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .jadlog-package-status {
    text-align: left;
    margin-top: 10px;
  }

  .timeline-item {
    padding-left: 44px;
  }

  .jadlog-footer {
    flex-direction: column;
  }

  .jadlog-btn {
    width: 100%;
    margin-bottom: 5px;
  }
}
