body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden;
}

h1,
h2 {
    text-align: center;
    margin-bottom: 20px;
}


.row-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    overflow: hidden;
}

.input-section,
.summary-section {
    width: 30%;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0px 10px grey;
}

.input-section:nth-child(2) {
    background: #04aa6d;
    color: white;
}

.input-section:nth-child(3) {
    background: #dc3545;
    color: white;
}

.input-section form {
    max-width: 250px;
}

.summary-section {
    background: #007bff;
    color: white;
    box-shadow: 0 0px 10px grey;
}

.highlight {
    background-color: #fffbdd;
}

.table-navigation {
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#date-input {
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#date-navigation-form button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 6px 12px;
    transition: background-color 0.3s ease;
}

#date-navigation-form button:hover {
    background-color: #0056b3;
}


.table-section {
    overflow-x: auto;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table,
th,
td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}

button {
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

input[type="number"],
input[type="date"],
input[type="text"],
select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-error {
    color: red;
}

@media screen and (max-width:862px) {
    .row-container {
        flex-direction: column !important;
    }

    .input-section,
    .summary-section {
        width: 90%;
    }
}

@media screen and (max-width:700px) {

    .input-section,
    .summary-section {
        width: 88%;
    }
}

@media screen and (max-width:624px) {

    .input-section,
    .summary-section {
        width: 85%;
    }
}

@media screen and (max-width:506px) {

    .input-section,
    .summary-section {
        width: 82%;
    }
}

@media screen and (max-width:416px) {

    .input-section,
    .summary-section {
        width: 78%;
    }
}


