/* Global Styles for Summary */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Container for Summary */
.summary-container {
    width: 80%;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.header .logo img {
    width: 100px;
}

.header .title {
    text-align: right;
}

/* Card Styles for Summary */
.summary-card {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.summary-card h2,h3 {
    font-size: 14px; /* Ajusta el tamaño según tu preferencia */
    font-weight: bold; /* Asegúrate de que sea visible */
    margin-bottom: 10px; /* Ajusta el margen según sea necesario */
}

/* Employee Info and Earnings/Deductions */
.employee-info, .earnings-deductions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.column {
    flex: 1;
    margin-right: 10px;
}

.column:last-child {
    margin-right: 0;
}

/* Footer */
.footer {
    border-top: 2px solid #000;
    padding-top: 10px;
    text-align: center;
    margin-top: 20px;
}

.footer h2 {
    margin: 5px 0;
}

.footer p {
    margin: 5px 0;
}

/* Otros estilos existentes */

/* Añadir estilos responsivos al final del archivo */
/* Media query para pantallas pequeñas */
@media screen and (max-width: 768px) {
    .container {
        width: 100%;
        margin: 0 10px;
        padding: 10px;
    }

    .card {
        padding: 10px;
        margin-bottom: 10px;
    }
}