/* 🔁 Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #19296F;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    margin: 20px 0;
    color: #19296F;
    font-size: 2.5em;
}

/* 🧾 Formulário */
form {
    text-align: center;
    margin-bottom: 30px;
}

input[type="text"] {
    padding: 10px;
    width: 60%;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    background-color: #fff;
    margin-bottom: 20px;
}

button {
    background: #19296F;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

button:hover {
    background: #101f5a;
    transform: translateY(-2px);
}

button:disabled {
    background: #aaa;
    cursor: not-allowed;
}

/* 🧳 Exibição do Status */
#statusResult {
    margin-top: 30px;
}

.client-info {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 20px;
}

.client-info h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.client-info p {
    font-size: 1.2em;
    margin-bottom: 8px;
}

.documents {
    margin-top: 30px;
}

.documents h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

/* 📃 Documentos */
ul#documentosList {
    list-style: none;
}

ul#documentosList li {
    background: #fff;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul#documentosList li .status {
    font-weight: bold;
}

ul#documentosList li .status.aprovado {
    color: #00C851;
}

ul#documentosList li .status.reprovado {
    color: #ff4444;
}

ul#documentosList li .status.pendente {
    color: #ffbb33;
}

/* 📱 Responsividade */
@media (max-width: 640px) {
    .container {
        padding: 20px;
    }

    button {
        width: 100%;
    }

    input[type="text"] {
        width: 80%;
    }
}
.status.reenviado {
    color: #33b5e5;
    font-style: italic;
}
.hidden {
    display: none;
  }
  
.reenviarButton {
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
  }
.file-input {
    display: none !important; /* Garante que o input nunca será exibido */
}
.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 700px;
    margin: 0 auto 20px;
    padding: 0 15px;
}
/* 📱 Responsividade */
@media (max-width: 640px) {
    .status-header {
      flex-direction: column;
      align-items: center;
      gap: 15px;
      padding: 0;
    
}}