 
        .ssl-status-badge {
            display: inline-block;
            padding: 0.35rem 1rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .status-valid { background-color: #d4edda; color: #155724; border-left: 4px solid var(--success-color); }
        .status-warning { background-color: #fff3cd; color: #856404; border-left: 4px solid var(--warning-color); }
        .status-danger { background-color: #f8d7da; color: #721c24; border-left: 4px solid var(--danger-color); }
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .info-item {
            background-color: white;
            border-radius: 6px;
            padding: 0.75rem 1rem;
            border: 1px solid #eee;
        }
        .info-label {
            font-weight: 600;
            color: #6c757d;
            font-size: 0.85rem;
            text-transform: uppercase;
        }
        .info-value {
            font-size: 1.1rem;
            font-weight: 500;
            word-break: break-word;
        }
        .example-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .example-badge {
            background-color: rgba(44, 125, 160, 0.1);
            border: 1px solid rgba(44, 125, 160, 0.2);
            border-radius: 20px;
            padding: 0.4rem 1rem;
            font-size: 0.9rem;
            color: var(--primary-color);
            cursor: pointer;
            transition: all 0.2s;
        }
        .example-badge:hover {
            background-color: rgba(44, 125, 160, 0.2);
            transform: translateY(-2px);
        }
        .chain-item {
            display: flex;
            align-items: center;
            padding: 0.5rem;
            border-bottom: 1px dashed #eee;
        }
        .chain-item:last-child { border-bottom: none; }
        .chain-level {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            margin-right: 1rem;
        }
        .badge {
            margin-right: 0.3rem;
            padding: 0.3rem 0.6rem;
        }