/* Clone of Google SERP */
.google-preview-container {
    background: #fff;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    font-family: arial, sans-serif;
    max-width: 600px; /* Desktop size */
    width: 100%;
    margin: 0 auto;
    text-align: left;
    transition: all 0.3s ease;
}

.google-preview-container.mobile-view {
    max-width: 375px; /* Mobile size */
    border-radius: 24px;
}

.g-url-container {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #202124;
    margin-bottom: 4px;
}

.g-url {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.g-sponsor-badge {
    font-weight: bold;
    color: #202124;
    margin-right: 8px;
    display: none;
}

.is-ad .g-sponsor-badge {
    display: inline;
}

.g-title {
    color: #1a0dab;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 3px;
    cursor: pointer;
    text-decoration: none;
    word-wrap: break-word;
}

.g-title:hover {
    text-decoration: underline;
}

.g-desc {
    color: #4d5156;
    font-size: 14px;
    line-height: 1.58;
    word-wrap: break-word;
}
