 body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f4f8;
            color: #333;
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        .site-branding {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        .site-logo {
            height: 120px;
            margin-right: 10px;
        }
        .site-name {
            font-size: 24px;
            font-weight: 700;
            color: #4285f4;
            margin: 0;
        }
        .header {
            background-color: #4285f4;
            color: white;
            padding: 20px;
            text-align: center;
            border-radius: 8px 8px 0 0;
            position: relative;
        }
        .sender-info {
            background-color: rgba(255, 255, 255, 0.15);
            padding: 10px 15px;
            border-radius: 6px;
            margin-top: 15px;
            font-size: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        .sender-name {
            font-weight: 500;
            margin-bottom: 5px;
        }
        .sender-disclaimer {
            font-size: 12px;
            opacity: 0.9;
            text-align: center;
            margin-top: 5px;
        }
        .content {
            background-color: white;
            padding: 20px;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .symptom-card {
            margin-bottom: 20px;
            padding: 15px;
            background-color: #f5f5f5;
            border-radius: 8px;
            border-left: 4px solid #4285f4;
        }
        .symptom-name {
            font-size: 18px;
            margin-top: 0;
            color: #1a73e8;
        }
        .symptom-details {
            margin: 15px 0;
        }
        .symptom-detail {
            margin-bottom: 8px;
        }
        .symptom-description {
            font-style: italic;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #ddd;
        }
        .symptom-source {
            font-size: 14px;
            color: #666;
            margin-top: 5px;
        }
        .pain-points-list {
            margin-top: 5px;
            padding-left: 20px;
        }
        .loading-indicator {
            text-align: center;
            margin: 50px 0;
        }
        .error-container {
            background-color: #ffebee;
            color: #c62828;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin-top: 20px;
            display: none;
        }
        .share-expiry {
            background-color: #fffde7;
            padding: 10px;
            border-radius: 4px;
            margin-top: 20px;
            font-size: 14px;
            text-align: center;
        }
        .back-to-home {
            display: block;
            text-align: center;
            margin-top: 20px;
            color: #4285f4;
            text-decoration: none;
            font-weight: 500;
            padding: 10px;
            transition: all 0.2s ease;
        }
        .back-to-home:hover {
            background-color: #f0f4f8;
            border-radius: 4px;
        }
        .create-account {
            display: block;
            text-align: center;
            margin-top: 30px;
            background-color: #4285f4;
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        .create-account:hover {
            background-color: #3367d6;
        }
        .data-item {
            margin-bottom: 15px;
            padding: 15px;
            background-color: #f5f5f5;
            border-radius: 8px;
        }
        .data-section {
            margin-bottom: 20px;
            padding: 15px;
            background-color: #f5f5f5;
            border-radius: 8px;
        }
        .data-row {
            display: flex;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0e0e0;
        }
        .data-row:last-child {
            border-bottom: none;
        }
        .data-label {
            font-weight: bold;
            width: 150px;
            flex-shrink: 0;
        }
        .data-value {
            flex-grow: 1;
        }
        .data-array {
            margin: 0;
            padding-left: 20px;
        }
        .nested-object {
            padding-left: 15px;
            border-left: 2px solid #e0e0e0;
            margin-top: 5px;
        }
        .info-section {
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e0e0e0;
        }
        .info-section:last-child {
            border-bottom: none;
        }
        .info-section h3 {
            margin-top: 0;
            color: #4285f4;
        }
        .info-details {
            padding-left: 15px;
        }
        .info-detail {
            margin-bottom: 8px;
        }
        .footer {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
            color: #666;
            font-size: 14px;
        }
        @media (max-width: 600px) {
            .container {
                padding: 10px;
            }
            .header, .content {
                padding: 15px;
            }
            .data-row {
                flex-direction: column;
            }
            .data-label {
                width: 100%;
                margin-bottom: 5px;
            }
        }
    </style>