.google-comments-container {
    max-width: 100%;
    margin: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.google-comments-form {
    margin-bottom: 2rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.google-comments-user-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.google-comments-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.google-comments-username {
    font-weight: 500;
    color: #1a73e8;
}

.google-comments-input-wrapper {
    position: relative;
}

.google-comments-input {
    width: 100%;
    min-height: 100px;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.google-comments-input:disabled {
    background-color: #f1f3f4;
    cursor: not-allowed;
}

.google-comments-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.google-comments-submit {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}

.google-comments-submit:hover {
    background-color: #1557b0;
}

.google-comments-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.google-comments-list {
    margin-top: 2rem;
}

.google-comment-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.google-comment-item:last-child {
    border-bottom: none;
}

.google-comment-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.google-comment-content {
    flex: 1;
}

.google-comment-author {
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #1a73e8;
}

.google-comment-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.google-comment-date {
    font-size: 12px;
    color: #666;
}