/* General layout */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #e8f5e9;
    color: #1b5e20;
    margin: 0;
    padding: 0;
}

.container {
    width: 95%;
    max-width: 1000px;
    margin: 20px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(27, 94, 32, 0.2);
}

/* Headers */
h1, h2, h3 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 10px;
}

/* Logo */
.logo {
    text-align: center;
    margin-bottom: 20px;
}
.logo img {
    max-height: 80px;
    margin-bottom: 10px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 1px solid #a5d6a7;
}

th, td {
    padding: 10px;
    text-align: center;
    border: 1px solid #a5d6a7;
    font-size: 14px;
}

th {
    background-color: #c8e6c9;
    color: #1b5e20;
}

tr:nth-child(even) {
    background-color: #f1f8e9;
}

/* Buttons */
button {
    background-color: #43a047;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    margin: 5px;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #2e7d32;
}

/* Charts */
.chart-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #f1f8e9;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
}

/* Passport */
.passport {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid #4caf50;
    border-radius: 4px;
}

/* Social Development */
.social-development {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.left-table, .right-table {
    width: 48%;
}

.print-only {
    display: none;
}
@media print {
    .noprint {
        display: none !important;
    }
    .print-only {
        display: block;
    }
    body {
        background: #ffffff;
        color: #000000;
    }
}
