        table.cgrid {
            border-collapse: collapse;
            width: 80%;
            margin: 20px auto;
            font-family: Arial, sans-serif;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        table.cgrid th {
            background-color: #add8e6; /* Light blue */
            color: #333;
            font-weight: bold;
            padding: 12px;
            text-align: center;
            border: 1px solid #ddd;
        }
        table.cgrid td {
            background-color: white;
            padding: 10px;
            border: 1px solid #ddd;
            text-align: center;
            cursor: pointer;
        }
        table.cgrid .row-header {
            background-color: #add8e6; /* Light blue */
            font-weight: bold;
            text-align: center;
        }
        table.cgrid caption {
            font-size: 1.2em;
            margin-bottom: 10px;
            font-weight: bold;
        }
        table.cgrid td a {
            color: #0066cc;
            text-decoration: none;
        }
        table.cgrid td a:hover {
            text-decoration: underline;
        }
        table.cgrid td a i {
            font-style: italic;
        }


	.option-container {
            margin-bottom: 20px;
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            transition: background-color 0.2s;
        }
        .option-container:hover {
            background-color: #f8f8f8;
        }
        .option-title {
            font-weight: bold;
            font-size: 1.1em;
            margin-left: 28px;
        }
        .option-description {
            margin: 8px 0 0 28px;
            color: #555;
        }
        input[type="radio"] {
            transform: translateY(7px);
        }
        .radio-label {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
        }
