body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #a8e6cf00; /* Light Green */
    color: #333;
}

.report-container {
    background-color: #56ab91; /* Darker Green */
    padding: 20px;
    min-height: 100vh;
    border-radius: 10px;
    position: relative;
}

.page-title {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

/* Background SVG */
.background-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Toggle Box Container */
.toggle-box {
    background-color: white;
    border-radius: 30px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 0 auto 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Buttons inside Toggle Box */
.toggle-btn {
    border: none;
    background: transparent;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    color: #333;
}

.toggle-btn.active {
    background-color: #4CAF50;
    color: white;
}

/* Total + Filter Combined Box */
.total-filter-box {
    background-color: #f0f9f4;
    border-radius: 20px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* Adjust inside texts */
.total-filter-box .report-value {
    font-size: 1rem;
    margin: 0;
}

.total-filter-box .filter-btn {
    padding: 6px 15px;
    border-radius: 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
}

.total-filter-box .filter-btn:hover {
    background-color: #45a049;
}
.orders-list {
    margin-top: 20px;
    overflow-x: auto;
}

.orders-list table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.orders-list th, .orders-list td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.orders-list th {
    background-color: #56ab91;
    color: white;
    border-radius: 10px;
}

.orders-list tr:hover {
    background-color: #f1f1f1;
}


/* Responsive */
@media (max-width: 768px) {
    .report-box-container {
        flex-direction: column;
        align-items: center;
    }
}
