﻿.report-form-container {
    max-width: 700px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 105, 92, 0.1);
    font-family: 'Cairo', sans-serif;
}

    .report-form-container h2 {
        text-align: center;
        margin-bottom: 30px;
        color: #00695c;
        font-weight: bold;
    }

    .report-form-container label {
        display: block;
        margin-bottom: 5px;
        color: #004d40;
        font-weight: bold;
    }

    .report-form-container input[type="date"],
    .report-form-container input[type="checkbox"] {
        width: 100%;
        padding: 8px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .report-form-container input[type="checkbox"] {
        width: auto;
    }

    .report-form-container .btn-primary {
        background-color: #00695c;
        color: #fff;
        border: none;
        padding: 12px 25px;
        border-radius: 6px;
        font-size: 16px;
        cursor: pointer;
        display: block;
        margin: auto;
        transition: background-color 0.3s ease-in-out;
    }

        .report-form-container .btn-primary:hover {
            background-color: #004d40;
        }
.summary-table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
    background: #f0fdf4;
    font-family: 'Cairo', sans-serif;
    border-radius: 6px;
    overflow: hidden;
}

    .summary-table th, .summary-table td {
        padding: 12px;
        text-align: right;
        border-bottom: 1px solid #ccc;
        font-size: 16px;
    }

    .summary-table th {
        background-color: #d0f0e4;
        color: #00695c;
        font-weight: bold;
    }
.report-summary-title {
    text-align: center;
    margin-top: 30px;
    color: #00695c;
    font-weight: bold;
    font-size: 22px;
}
