body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 40px auto;
    max-width: 800px;
    text-align: justify;
    padding: 10px;
}

h1 {
    margin:auto;
    text-align: center;
}

/* Tabs */
.tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border: none;
    background-color: #f0f0f0;
    font-size: 16px;
}

.tab-button.active {
    background-color: #d9534f;
    color: white;
}

/* Hide inactive tab content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Box styling without red border */
.box {
    background-color: #f8f9fa;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

/* Table Styling */
.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #f4f4f4;
}
/* UKUPNO Styling */
.total-box {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
}
