html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', sans-serif;
    background: #f4f9ff;
    color: #333;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

.container {
    flex: 1;
    max-width: 800px;
    margin: 20px auto;
}



.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.card {
    flex: 1 1 240px;
    background: #e0eefe;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: 0.3s;
}


/* ✅ Completado */
.card.completed {
  background-color: #d5f5e3; /* verde suave */
  border-left: 6px solid #2ecc71;
  color: #2c3e50;
}

/* ⏳ Pendiente */
.card.pending {
  background-color: #fff8c6; /* amarillo claro */
  border-left: 6px solid #f1c40f;
  color: #444;
}

/* ❌ Incompleto */
.card.incomplete {
  background-color: #fddede; /* rojo claro */
  border-left: 6px solid #e74c3c;
  color: #333;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

.btn:hover {
    background: #004094;
}
.topbar {
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar .logo a {
    font-size: 18px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.topnav a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-size: 14px;
}

.topnav a:hover {
    text-decoration: underline;
}
.footer {
    background-color: #0056b3;
    color: white;
    text-align: center;
    padding: 25px 15px;
    margin-top: 40px;
    font-size: 15px;
    border-top: 4px solid #004094;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 28px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    text-align: center;
    transition: background-color 0.3s;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
}
.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 1000;
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    text-align: center;
}
.modal-content h2 {
    margin-top: 0;
}
.modal-content ul {
    text-align: left;
}
.modal-content button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #0056b3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

input[readonly] {
    background: #eee;
    color: #555;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.form-buttons button {
    background-color: #005cbf;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.form-buttons button:hover {
    background-color: #004a9f;
}

.form-google-style {
    max-width: 600px;
    margin: auto;
    position: relative;
    padding: 1rem;
}

.form-card {
    display: none;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    animation: fadeIn 0.3s ease-in-out;
}

.form-card.active {
    display: block;
}

.form-navigation {
    text-align: center;
    margin-top: 20px;
}

.form-navigation button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 8px;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

