/* Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* Container principal */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Título principal */
h1 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
}

/* Formulário de consulta */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

label {
    font-size: 1.1em;
    font-weight: bold;
}

input[type="text"] {
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

button[type="submit"] {
    padding: 12px;
    font-size: 1.1em;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #218838;
}

/* Boletos pendentes */
h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.payment-card {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-card h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

.payment-card p {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #555;
}

.payment-card a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.payment-card a:hover {
    text-decoration: underline;
}

/* Botões de copiar */
.copy-button {
    padding: 8px 16px;
    background-color: #17a2b8;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.copy-button:hover {
    background-color: #138496;
}

/* Mensagem de alerta */
p {
    font-size: 1.1em;
    color: #e74c3c;
    margin-top: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 10px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .payment-card {
        padding: 15px;
    }

    input[type="text"],
    button[type="submit"] {
        font-size: 1em;
    }
}

.status {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

.status-pending {
    background-color: yellow;
    color: black;
}

.status-overdue {
    background-color: red;
    color: white;
}

