
        /* Reset básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f0f2f5;
            color: #333;
        }

       /* Navbar para dispositivos móveis */
        .navbar-123q {
            display: none;
            background-color: #2e3b4e;
            padding: 10px;
            justify-content: space-between;
            align-items: center;
            color: #fff;
        }

        .navbar-logo-123q {
            font-size: 18px;
        }

        .navbar-buttons-123q button {
            margin-left: 10px;
            background-color: #fff;
            color: #2e3b4e;
            border: none;
            border-radius: 4px;
            padding: 5px 10px;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .navbar-123q {
                display: flex;
            }
        }

        /* Feed */
        .feed-123q {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }

        /* Post Styling */
        .post-123q {
            background-color: #fff;
            width: 100%;
            max-width: 600px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .post-header-123q {
            display: flex;
            align-items: center;
            padding: 10px;
        }

        .profile-pic-123q {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 10px;
            background-color: #ddd;
            object-fit: cover;
        }
        .post-actions-123q button {
    background-color: transparent;
    border: none;
    color: #2e3b4e;
    cursor: pointer;
    font-size: 16px;
}
        .username-123q {
            font-weight: bold;
            flex: 1;
        }

        .adopt-btn-123q {
            padding: 5px 10px;
            background-color: #2e3b4e;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .post-content-123q img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            background-color: #ddd;
        }

        .description-123q {
            padding: 10px;
            font-size: 14px;
            color: #555;
            cursor: pointer;
        }

        .post-actions-123q {
            display: flex;
            justify-content: space-around;
            padding: 10px;
        }

        /* Modal de Comentários */
        .modal-123q, .share-modal-123q {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            overflow-y: auto;
            z-index: 1000;
        }

        .modal-content-123q, .share-content-123q {
            padding: 20px;
        }

        /* Comentários */
        .comments-123q {
            margin-top: 10px;
        }

        .comment-123q {
            display: flex;
            align-items: flex-start;
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }

        .comment-pic-123q {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            background-color: #ddd;
        }

        .comment-body-123q {
            max-width: 90%;
        }

        .comment-username-123q {
            font-weight: bold;
            margin-right: 5px;
        }

        .comment-message-123q {
            margin: 5px 0;
            color: #333;
        }

        .comment-time-123q {
            font-size: 12px;
            color: #888;
        }

        .comment-input-123q {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 25px;
            margin-top: 10px;
            background-color: #f0f2f5;
        }
 