/* High-contrast style for food plan modal table headers */
        .hourly-plan-table thead th {
            background-color: #34495e; /* Dark blue-grey, matching other high-contrast headers */
            color: white;
            font-weight: bold;
        }
        /* Style for readonly textareas in the food plan modal */
        .hourly-plan-table textarea[readonly] {
            background-color: #f0f0f0; /* Light grey for readonly fields */
            color: #555; /* Darker text for readability */
            cursor: not-allowed;
        }