
        .input-group {
            margin-bottom: 15px;
        }
        .input-group label {
            display: block;
            margin-bottom: 5px;
        }
        .input-group input, .input-group textarea {
            width: 100%;
            padding: 10px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .preview {
            margin-top: 30px;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: #fff;
            overflow: hidden;
        }
        .preview .content {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }
        .preview .content .logo {
            width: 16px; /* Logo width */
            height: 16px; /* Logo height */
            margin-right: 8px;
        }
        .preview .content .brand-url {
            display: flex;
            flex-direction: column;
        }
        .preview .content .brand-container {
            font-size: 14px;
            line-height: 16px; /* Set to match logo height */
        }
        .preview .content .url {
            color: #545454; /* URL color in blue */
            font-size: 14px;
            line-height: 16px; /* Set to match logo height */
        }
        .preview .title {
            font-size: 18px;
            color: #1a0dab;
            margin-bottom: 5px;
            cursor: pointer;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .preview .title:hover {
            text-decoration: underline;
        }
        .preview .description {
            font-size: 13px;
            color: #545454;
            line-height: 1.5;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* Limit to 3 lines */
            -webkit-box-orient: vertical;
        }