
/* * {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
} */

.package-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header {
    text-align: center;
    margin-bottom: 8x;
    color: #2e7d32;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

th, td {
    border: 1px solid #444; /* Darker borders to match image */
    padding: 12px 8px;
    text-align: center;
    vertical-align: middle;
}

/* --- Column Background Colors --- */
/* Diamond Column */
td:nth-child(2), th:nth-child(2) { background-color: #d9d9d9; }
/* Gold Column */
td:nth-child(3), th:nth-child(3) { background-color: #ffc72d; }
/* Silver Column */
td:nth-child(4), th:nth-child(4) { background-color: #b1b3d3; }
/* Bronze Column */
td:nth-child(5), th:nth-child(5) { background-color: #e9972a; }

/* First column styling (labels) */
td:first-child {
    text-align: left;
    background-color: #f2f2f2 !important;
    width: 40%;
    font-weight: normal;
}

/* Package headers text weight */
.package-header th {
    font-weight: bold;
    color: #000;
}

/* --- Row Overrides --- */
/* Category rows (Green) */
.category-row td {
    background-color: #2e7d32 !important; 
    color: #fff !important;
    font-weight: bold;
    text-align: left;
    padding-left: 10px;
}

/* Investment row (Green) */
.investment-row td {
    background-color: #1b5e20 !important;
    color: #fff !important;
    font-weight: bold;
    font-size: 18px;
}

.investment-label {
    text-align: right !important;
}

/* Tick and cross styling */
.tick { color: #000; font-weight: bold; font-size: 18px; }
.cross { color: #000; font-weight: bold; font-size: 18px; }

.note {
    margin-top: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #ccc;
}

.footer {
    text-align: center;
    margin-top: 30px;
    color: #777;
    font-size: 14px;
}

@media (max-width: 768px) {
    table { display: block; overflow-x: auto; }
    th, td { min-width: 120px; }
    td:first-child { min-width: 200px; }
}